Skip to content

Commit

Permalink
code format
Browse files Browse the repository at this point in the history
  • Loading branch information
agrgr committed Sep 1, 2024
1 parent 5154c6f commit a90a43c
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,12 +106,12 @@ public static String[] getBinNamesFromTargetClass(Class<?> targetClass,

List<String> binNamesList = new ArrayList<>();

targetEntity.doWithProperties((PropertyHandler<AerospikePersistentProperty>) property
-> {
if(!property.isIdProperty()) {
binNamesList.add(property.getFieldName());
}
});
targetEntity.doWithProperties(
(PropertyHandler<AerospikePersistentProperty>) property -> {
if (!property.isIdProperty()) {
binNamesList.add(property.getFieldName());
}
});

return binNamesList.toArray(new String[0]);
}
Expand Down

0 comments on commit a90a43c

Please sign in to comment.