We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c4cfdb commit 8c9072cCopy full SHA for 8c9072c
src/main/java/org/truffleruby/core/hash/library/CompactHashStore.java
@@ -22,6 +22,7 @@
22
import com.oracle.truffle.api.dsl.GenerateInline;
23
import org.truffleruby.RubyContext;
24
import org.truffleruby.RubyLanguage;
25
+import org.truffleruby.annotations.SuppressFBWarnings;
26
import org.truffleruby.collections.PEBiFunction;
27
import org.truffleruby.core.array.ArrayHelpers;
28
import org.truffleruby.core.array.ArrayUtils;
@@ -567,6 +568,7 @@ static boolean keyAlreadyExistsWithDifferentValue(
567
568
}
569
570
// setting a new key is more expensive
571
+ @SuppressFBWarnings("IP_PARAMETER_IS_DEAD_BUT_OVERWRITTEN")
572
@Specialization(guards = "keyPos < 0")
573
static boolean keyDoesntExist(
574
Node node,
0 commit comments