Skip to content

Commit

Permalink
refactor: removes redundant local variable
Browse files Browse the repository at this point in the history
  • Loading branch information
fractalwrench committed Apr 11, 2019
1 parent 044a6ad commit 77aaebd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions sdk/src/main/java/com/bugsnag/android/ThreadState.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,8 @@ class ThreadState implements JsonStream.Streamable {

public ThreadState(@NonNull Configuration config,
@NonNull Thread currentThread,
@NonNull Map<Thread, StackTraceElement[]> allStackTraces,
@NonNull Map<Thread, StackTraceElement[]> stackTraces,
@Nullable Throwable exc) {
Map<Thread, StackTraceElement[]> stackTraces = allStackTraces;

// API 24/25 don't record the currentThread, add it in manually
// https://issuetracker.google.com/issues/64122757
Expand Down

0 comments on commit 77aaebd

Please sign in to comment.