We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48e4b5e commit bba81e2Copy full SHA for bba81e2
core/src/main/java/edu/wpi/grip/core/sources/MultiImageFileSource.java
@@ -72,8 +72,7 @@ public final class MultiImageFileSource extends Source implements PreviousNext {
72
return URLDecoder.decode(Paths.get(file.toURI()).toString(),
73
StandardCharsets.UTF_8.name());
74
} catch (UnsupportedEncodingException e) {
75
- Throwables.propagate(e);
76
- return "";
+ throw Throwables.propagate(e);
77
}
78
}).collect(Collectors.toList()).toArray(new String[files.size()]), index);
79
0 commit comments