Skip to content

Commit fdc342c

Browse files
committed
PrefService: tweak style
1 parent 7d4f21d commit fdc342c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/main/java/org/scijava/prefs/DefaultPrefService.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -472,9 +472,7 @@ public List<String> getList() {
472472
final List<String> list = new ArrayList<>();
473473
for (int index = 0; index < Integer.MAX_VALUE; index++) {
474474
final String value = get("" + index);
475-
if (value == null) {
476-
break;
477-
}
475+
if (value == null) break;
478476
list.add(value);
479477
}
480478
return list;

0 commit comments

Comments
 (0)