Skip to content

Commit

Permalink
[ignore] remove unnecessary parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
line-o committed Sep 12, 2023
1 parent c35b33a commit 42c5bf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exist-core/src/main/java/org/exist/util/Configuration.java
Original file line number Diff line number Diff line change
Expand Up @@ -1550,7 +1550,7 @@ private String getAttributeSystemPropertyName(Element element, String attributeN

property.insert(0, "org.");

return (property.toString());
return property.toString();
}

public Optional<Path> getConfigFilePath() {
Expand Down

0 comments on commit 42c5bf0

Please sign in to comment.