Skip to content

Commit 66d3544

Browse files
committed
Simplify
1 parent 415a24f commit 66d3544

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/apache/commons/collections4/properties/SortedProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public Enumeration<?> propertyNames() {
9999
}
100100

101101
private Stream<String> sortedKeys() {
102-
return keySet().stream().map(Object::toString).sorted();
102+
return keySet().stream().map(Object::toString);
103103
}
104104

105105
@Override

0 commit comments

Comments
 (0)