We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d4f21d commit fdc342cCopy full SHA for fdc342c
src/main/java/org/scijava/prefs/DefaultPrefService.java
@@ -472,9 +472,7 @@ public List<String> getList() {
472
final List<String> list = new ArrayList<>();
473
for (int index = 0; index < Integer.MAX_VALUE; index++) {
474
final String value = get("" + index);
475
- if (value == null) {
476
- break;
477
- }
+ if (value == null) break;
478
list.add(value);
479
}
480
return list;
0 commit comments