We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3fb591 commit 40d2ae4Copy full SHA for 40d2ae4
src/main/java/org/scijava/io/DefaultIOService.java
@@ -96,7 +96,7 @@ public Object open(final String source) throws IOException {
96
public void save(final Object data, final String destination)
97
throws IOException
98
{
99
- IOPlugin<Object> saver = getSaver(data, destination);
+ final IOPlugin<Object> saver = getSaver(data, destination);
100
if (saver != null) {
101
saver.save(data, destination);
102
}
0 commit comments