Skip to content

Commit

Permalink
fix eslint error (#3008)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasheyenbrock authored Jan 30, 2023
1 parent effc406 commit 1374323
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,9 @@ class Marker {
mark(name: string): boolean {
if (this.set.has(name)) {
return false;
} else {
this.set.add(name);
return true;
}
this.set.add(name);
return true;
}
}

Expand Down

0 comments on commit 1374323

Please sign in to comment.