Skip to content

Commit 3d104c2

Browse files
committed
Remove unused parameter
1 parent 5e67f47 commit 3d104c2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/com/akaita/java/rxjava2debug/ExceptionUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
class ExceptionUtils {
2626

27-
static Throwable setRootCause(@NonNull Throwable throwable, @NonNull Throwable rootCause, @Nullable String[] basePackages) {
27+
static Throwable setRootCause(@NonNull Throwable throwable, @NonNull Throwable rootCause) {
2828
if (throwable == null){
2929
return null;
3030
}

src/main/java/com/akaita/java/rxjava2debug/RxJava2Debug.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public static void disableRxJava2AssemblyTracking() {
7171
StackTraceElement[] clearStack = parseStackTrace(assembledException, basePackages);
7272
Throwable clearException = new Throwable();
7373
clearException.setStackTrace(clearStack);
74-
enhanced = setRootCause(original, clearException, basePackages);
74+
enhanced = setRootCause(original, clearException);
7575
}
7676

7777
return enhanced;

0 commit comments

Comments
 (0)