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() {
5454 return Collections .unmodifiableList (subCriteria );
5555 }
5656
57- public boolean isUnrenderableClauseAllowed () {
57+ public boolean isNonRenderingClauseAllowed () {
5858 return statementConfiguration .isNonRenderingWhereClauseAllowed ();
5959 }
6060
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ public Optional<WhereClauseProvider> render() {
5050 .build ()
5151 );
5252
53- if (whereClause .isPresent () || whereModel .isUnrenderableClauseAllowed ()) {
53+ if (whereClause .isPresent () || whereModel .isNonRenderingClauseAllowed ()) {
5454 return whereClause ;
5555 } else {
5656 throw new NonRenderingWhereClauseException ();
You can’t perform that action at this time.
0 commit comments