Skip to content
This repository was archived by the owner on Jun 11, 2023. It is now read-only.

Commit eeacdc4

Browse files
Fixes quotes compilation error from pull request #2
1 parent a512f71 commit eeacdc4

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/com/github/alexliesenfeld/querydsl/jpa/hibernate

1 file changed

+1
-1
lines changed

src/main/java/com/github/alexliesenfeld/querydsl/jpa/hibernate/JsonPath.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ public BooleanExpression contains(Object value) {
235235
StringBuilder sb = new StringBuilder();
236236
functionNameOf(sb, "contains").append('(');
237237
generateArgs(sb, args.size());
238-
sb.append(') = true');
238+
sb.append(") = true");
239239
return Expressions.booleanTemplate(sb.toString(), args);
240240
}
241241

0 commit comments

Comments
 (0)