Skip to content

Commit

Permalink
fix eslint error
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasheyenbrock committed Jan 30, 2023
1 parent effc406 commit dfafc9d
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 dfafc9d

Please sign in to comment.