Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -390,6 +390,9 @@ public void visitMethodInsn(

@Override
public void visitTypeInsn(final int opcode, final String stype) {
if (ignoreReference(stype)) {
return;
}
Type type = underlyingType(Type.getObjectType(stype));

if (ignoreReference(type.getInternalName())) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ public static void methodBodyAdvice() {
a.b.aMethodWithArrays(new String[0]);
B.aStaticMethod();
A.staticB.aMethod("bar");
Object barr = new byte[0];
if (barr instanceof byte[]) {
barr = null;
}
}

public static class A {
Expand Down
Loading