We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98ec093 commit 6148649Copy full SHA for 6148649
1 file changed
APIJSONORM/src/main/java/apijson/orm/AbstractSQLConfig.java
@@ -5256,7 +5256,7 @@ else if (userId instanceof Subquery) {}
5256
boolean hasKey = deletedKey instanceof String && StringUtil.isNotEmpty(deletedKey, true);
5257
Object deletedValue = hasKey ? accessFakeDeleteMap.get(KEY_DELETED_VALUE) : null;
5258
boolean containNotDeletedValue = hasKey ? accessFakeDeleteMap.containsKey(KEY_NOT_DELETED_VALUE) : false;
5259
- Object notDeletedValue = containNotDeletedValue ? accessFakeDeleteMap.get(KEY_NOT_DELETED_VALUE) : false;
+ Object notDeletedValue = containNotDeletedValue ? accessFakeDeleteMap.get(KEY_NOT_DELETED_VALUE) : null;
5260
5261
if (deletedValue != null || containNotDeletedValue) {
5262
boolean isFakeDelete = true;
0 commit comments