Skip to content

Commit 40d2ae4

Browse files
committed
DefaultIOService: add missing final keyword
1 parent a3fb591 commit 40d2ae4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/scijava/io/DefaultIOService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public Object open(final String source) throws IOException {
9696
public void save(final Object data, final String destination)
9797
throws IOException
9898
{
99-
IOPlugin<Object> saver = getSaver(data, destination);
99+
final IOPlugin<Object> saver = getSaver(data, destination);
100100
if (saver != null) {
101101
saver.save(data, destination);
102102
}

0 commit comments

Comments
 (0)