Skip to content

Commit 2e59d7f

Browse files
committed
Remove now unnecessary suppression of private var usage
1 parent 186416a commit 2e59d7f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/core/database/query-augmentation/pattern-formatting.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,9 @@ import { camelCase } from 'lodash';
2020
import { isExp } from '../query';
2121
import { WhereAndList } from '../query/where-and-list';
2222

23-
// Add line breaks for each pattern when there's multiple per statement
23+
// Add line breaks for each pattern when there is multiple per statement
2424
// And ignore empty patterns
2525
PatternClause.prototype.build = function build() {
26-
// @ts-expect-error private but we are using it
2726
const patternStrings = this.patterns.map((pattern) =>
2827
pattern.reduce((str: string, clause: Clause) => str + clause.build(), ''),
2928
);

0 commit comments

Comments
 (0)