From 1df0830bec0120bb056e2339ee432663a92aad3a Mon Sep 17 00:00:00 2001 From: Lukas Stadler <lukas.stadler@oracle.com> Date: Tue, 22 Dec 2015 14:08:23 +0100 Subject: [PATCH] remove unused @SuppressWarnings("unused") in identical --- .../src/com/oracle/truffle/r/nodes/builtin/base/Identical.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/com.oracle.truffle.r.nodes.builtin/src/com/oracle/truffle/r/nodes/builtin/base/Identical.java b/com.oracle.truffle.r.nodes.builtin/src/com/oracle/truffle/r/nodes/builtin/base/Identical.java index dd1e502745..68f75c9d98 100644 --- a/com.oracle.truffle.r.nodes.builtin/src/com/oracle/truffle/r/nodes/builtin/base/Identical.java +++ b/com.oracle.truffle.r.nodes.builtin/src/com/oracle/truffle/r/nodes/builtin/base/Identical.java @@ -188,7 +188,6 @@ public abstract class Identical extends RBuiltinNode { return RRuntime.LOGICAL_TRUE; } - @SuppressWarnings("unused") @Specialization protected byte doInternalIdenticalGeneric(RList x, RList y, byte numEq, byte singleNA, byte attribAsSet, byte ignoreBytecode, byte ignoreEnvironment) { if (!recursive) { @@ -241,7 +240,6 @@ public abstract class Identical extends RBuiltinNode { return RRuntime.LOGICAL_FALSE; } - @SuppressWarnings("unused") @Specialization protected byte doInternalIdenticalGeneric(RS4Object x, RS4Object y, Object numEq, Object singleNA, Object attribAsSet, Object ignoreBytecode, Object ignoreEnvironment) { if (!recursive) { -- GitLab