Skip to content

Commit 35b8656

Browse files
committed
Make the findbugs checker happy
1 parent 3018f69 commit 35b8656

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

rollbar-java/src/main/java/com/rollbar/jvmti/CacheFrame.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public final class CacheFrame {
1919
*/
2020
public CacheFrame(Method method, LocalVariable[] locals) {
2121
this.method = method;
22-
this.locals = locals;
22+
this.locals = Arrays.copyOf(locals, locals.length);
2323
}
2424

2525
/**

0 commit comments

Comments
 (0)