Skip to content

Commit

Permalink
code format
Browse files Browse the repository at this point in the history
  • Loading branch information
agrgr committed May 29, 2024
1 parent 9ea20c3 commit 5622d1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ public QueryEngine queryEngine(IAerospikeClient aerospikeClient,
log.debug("AerospikeDataSettings.queryMaxRecords: {}", queryMaxRecords);
queryEngine.setQueryMaxRecords(queryMaxRecords);
if (!settings.getDataSettings().isWriteSortedMaps()) {
log.debug("AerospikeDataSettings.writeSortedMaps: false");
log.debug("AerospikeDataSettings.writeSortedMaps is set to false, " +
"Maps and POJOs will be written as unsorted Maps (decrease in performance compared with sorted Maps)");
}
return queryEngine;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,6 @@ public Exp filterExp(Map<QualifierKey, Object> qualifierMap) {
value.getClass().getSimpleName());
};
return Exp.or(Exp.not(Exp.binExists(getBinName(qualifierMap))), ne);

});
}

Expand Down

0 comments on commit 5622d1b

Please sign in to comment.