File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
APIJSONORM/src/main/java/apijson/orm Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -5242,8 +5242,8 @@ else if (userId instanceof Subquery) {}
5242
5242
Object deletedKey = accessFakeDeleteMap == null ? null : accessFakeDeleteMap .get (KEY_DELETED_KEY );
5243
5243
boolean hasKey = deletedKey instanceof String && StringUtil .isNotEmpty (deletedKey , true );
5244
5244
Object deletedValue = hasKey ? accessFakeDeleteMap .get (KEY_DELETED_VALUE ) : null ;
5245
- boolean containNotDeletedValue = hasKey ? accessFakeDeleteMap .containsKey (KEY_NOT_DELETED_VALUE ) : null ;
5246
- Object notDeletedValue = containNotDeletedValue ? accessFakeDeleteMap .get (KEY_NOT_DELETED_VALUE ) : null ;
5245
+ boolean containNotDeletedValue = hasKey ? accessFakeDeleteMap .containsKey (KEY_NOT_DELETED_VALUE ) : false ;
5246
+ Object notDeletedValue = containNotDeletedValue ? accessFakeDeleteMap .get (KEY_NOT_DELETED_VALUE ) : false ;
5247
5247
5248
5248
if (deletedValue != null || containNotDeletedValue ) {
5249
5249
boolean isFakeDelete = true ;
@@ -5962,4 +5962,4 @@ public AbstractSQLConfig setWithAsExprPreparedValueList(List<Object> list) {
5962
5962
this .withAsExprPreparedValueList = list ;
5963
5963
return this ;
5964
5964
}
5965
- }
5965
+ }
You can’t perform that action at this time.
0 commit comments