Skip to content

Commit

Permalink
fix: make wrapWhereClauseInParenthesis private
Browse files Browse the repository at this point in the history
  • Loading branch information
nktnet1 committed Nov 28, 2024
1 parent 70d5d80 commit 2158490
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/components/common_components/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1860,7 +1860,7 @@ export class Common {
return new Promise(resolve => setTimeout(resolve, time));
}

static wrapWhereClauseInParenthesis(clause: WhereClause): { beginClause: WhereClause, endClause: WhereClause } {
private static wrapWhereClauseInParenthesis(clause: WhereClause): { beginClause: WhereClause, endClause: WhereClause } {
const clone = JSON.parse(JSON.stringify(clause)) as WhereClause;
clone.left.openParen = (clone.left.openParen ?? 0) + 1
let current = clone;
Expand Down

0 comments on commit 2158490

Please sign in to comment.