Skip to content

Commit 7c76179

Browse files
author
Mikel Pascual
committed
Support empty filters
1 parent 95b0164 commit 7c76179

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ static StackTraceElement[] parseStackTrace(@NonNull RxJavaAssemblyException exce
4646
for (String line : lines) {
4747
filterIn = filterIn
4848
|| basePackages == null
49+
|| basePackages.length == 0
4950
|| startsWithAny(line, basePackages);
5051
if (filterIn) {
5152
StackTraceElement element = parseStackTraceLine(line);

0 commit comments

Comments
 (0)