Skip to content

Commit c61f103

Browse files
committed
Remove comments
1 parent 78b3ff3 commit c61f103

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/Range.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,6 @@ class Range {
1717
}
1818

1919
isWithinRange(n: Readonly<number>): boolean {
20-
// console.log("this.inclusiveLowerBound: " + this.inclusiveLowerBound);
21-
// console.log("n: " + n);
22-
// console.log("this.exclusiveUpperBound: " + this.exclusiveUpperBound);
23-
2420
return this.inclusiveLowerBound <= n && n < this.exclusiveUpperBound;
2521
}
2622
}

0 commit comments

Comments
 (0)