File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/main/java/org/mybatis/dynamic/sql/where Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ public List<AndOrCriteriaGroup> subCriteria() {
54
54
return Collections .unmodifiableList (subCriteria );
55
55
}
56
56
57
- public boolean isUnrenderableClauseAllowed () {
57
+ public boolean isNonRenderingClauseAllowed () {
58
58
return statementConfiguration .isNonRenderingWhereClauseAllowed ();
59
59
}
60
60
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ public Optional<WhereClauseProvider> render() {
50
50
.build ()
51
51
);
52
52
53
- if (whereClause .isPresent () || whereModel .isUnrenderableClauseAllowed ()) {
53
+ if (whereClause .isPresent () || whereModel .isNonRenderingClauseAllowed ()) {
54
54
return whereClause ;
55
55
} else {
56
56
throw new NonRenderingWhereClauseException ();
You can’t perform that action at this time.
0 commit comments