Skip to content
Snippets Groups Projects
Commit 0abc3d69 authored by Mick Jordan's avatar Mick Jordan
Browse files

fix parse specialization bug

parent 4963577a
Branches
No related tags found
No related merge requests found
......@@ -100,7 +100,7 @@ public abstract class Parse extends RBuiltinNode {
return sb.toString();
}
public static boolean parseEntire(Object n) {
public static boolean parseEntire(@SuppressWarnings("unused") Object conn, Object n) {
if (n == RNull.instance) {
return true;
} else if (n instanceof Double && (((Double) n == -1 || ((Double) n) == RRuntime.DOUBLE_NA))) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment