Skip to content

Commit

Permalink
#930 Braces in wrong spot
Browse files Browse the repository at this point in the history
  • Loading branch information
nickdos committed Jan 30, 2025
1 parent 2c061a6 commit 9f037ec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,7 @@ private IndexFieldDTO formatIndexField(String fieldName, String fieldType, Strin

f.setName(fieldName);

if ((fieldType != null && skipFieldTypes.contains(fieldType) || fieldName.startsWith("_"))) {
if ((fieldType != null && skipFieldTypes.contains(fieldType)) || fieldName.startsWith("_")) {
// Skip fields we don't want to expose
return null;
} else if (fieldType != null) {
Expand Down

0 comments on commit 9f037ec

Please sign in to comment.