Skip to content
Snippets Groups Projects
Commit aa92a44d authored by Lukas Stadler's avatar Lukas Stadler
Browse files

fix warnings for non-thrown IOExceptions

parent 75899d97
No related branches found
No related tags found
No related merge requests found
......@@ -299,6 +299,7 @@ public class RCommand {
return RRuntime.asString(RRuntime.asAbstractVector(RContext.getInstance().stateROptions.getValue("continue")));
}
@SuppressWarnings("unused")
private static void emitIO() throws IOException {
}
}
......@@ -61,6 +61,7 @@ public class FastRInterop {
return callTarget.call();
}
@SuppressWarnings("unused")
private void emitIO() throws IOException {
}
}
......
......@@ -292,6 +292,7 @@ public final class FastRSession implements RSession {
return "FastR";
}
@SuppressWarnings("unused")
static void emitIO() throws IOException {
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment