Skip to content

Commit bba81e2

Browse files
committed
Solve comments
1 parent 48e4b5e commit bba81e2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

core/src/main/java/edu/wpi/grip/core/sources/MultiImageFileSource.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,7 @@ public final class MultiImageFileSource extends Source implements PreviousNext {
7272
return URLDecoder.decode(Paths.get(file.toURI()).toString(),
7373
StandardCharsets.UTF_8.name());
7474
} catch (UnsupportedEncodingException e) {
75-
Throwables.propagate(e);
76-
return "";
75+
throw Throwables.propagate(e);
7776
}
7877
}).collect(Collectors.toList()).toArray(new String[files.size()]), index);
7978
}

0 commit comments

Comments
 (0)