Skip to content

Commit

Permalink
fix spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
nbauernfeind committed Jun 12, 2024
1 parent 9b3fe23 commit 7488c97
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ public class WhereFilterFactory {
// Each side may fit: (<ColumnName>|<QueryScopeParam>|<Number|Boolean|"String"|Literal>)
// Supported ops: ==, =, !=, <, <=, >, >=
parser.registerFactory(new AbstractExpressionFactory<>(
START_PTRN + "(?:(" + ID_PTRN + ")|(" + LITERAL_PTRN + "))\\s*((?:=|!|<|>)=?)\\s*(?:(" + ID_PTRN + ")|(" + LITERAL_PTRN + "))" + END_PTRN) {
START_PTRN + "(?:(" + ID_PTRN + ")|(" + LITERAL_PTRN + "))\\s*((?:=|!|<|>)=?)\\s*(?:(" + ID_PTRN + ")|("
+ LITERAL_PTRN + "))" + END_PTRN) {
@Override
public WhereFilter getExpression(String expression, Matcher matcher, Object... args) {
// LITERAL_PTRN has 5 groups; mostly non-capturing
Expand Down

0 comments on commit 7488c97

Please sign in to comment.