Skip to content

Commit 81065d3

Browse files
committed
Add findbugs hint.
1 parent 16b5857 commit 81065d3

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

byte-buddy-dep/src/main/java/net/bytebuddy/asm/Advice.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -6368,7 +6368,7 @@ protected WithPreservedArguments(TypeDescription instrumentedType,
63686368
}
63696369

63706370
@Override
6371-
@SuppressFBWarnings(value = "RC_REF_COMPARISON_BAD_PRACTICE", justification = "ASM models frames by reference comparison.")
6371+
@SuppressFBWarnings(value = "RC_REF_COMPARISON_BAD_PRACTICE", justification = "ASM models frames by reference identity.")
63726372
protected void translateFrame(MethodVisitor methodVisitor,
63736373
TranslationMode translationMode,
63746374
MethodDescription methodDescription,
@@ -6628,7 +6628,7 @@ public void injectStartFrame(MethodVisitor methodVisitor) {
66286628
/**
66296629
* {@inheritDoc}
66306630
*/
6631-
@SuppressFBWarnings(value = "RC_REF_COMPARISON_BAD_PRACTICE", justification = "Reference equality is required by ASM.")
6631+
@SuppressFBWarnings(value = "RC_REF_COMPARISON_BAD_PRACTICE", justification = "ASM models frames by reference identity.")
66326632
public void translateFrame(MethodVisitor methodVisitor,
66336633
int type,
66346634
int localVariableLength,

byte-buddy-dep/src/main/java/net/bytebuddy/utility/visitor/StackAwareMethodVisitor.java

+1
Original file line numberDiff line numberDiff line change
@@ -445,6 +445,7 @@ public void visitTryCatchBlock(Label start, Label end, Label handler, @MaybeNull
445445
}
446446

447447
@Override
448+
@SuppressFBWarnings(value = "RC_REF_COMPARISON_BAD_PRACTICE", justification = "ASM models frames by reference identity.")
448449
public void visitFrame(int type, int localVariableLength, @MaybeNull Object[] localVariable, int stackSize, @MaybeNull Object[] stack) {
449450
switch (type) {
450451
case Opcodes.F_SAME:

0 commit comments

Comments
 (0)