Skip to content

Commit

Permalink
Fix dexmerger test
Browse files Browse the repository at this point in the history
  • Loading branch information
mauriciogg authored Oct 2, 2022
1 parent 47152ea commit 882e691
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,8 @@ public void close() throws IOException {
}

private boolean isOuterClass(String classFile) {
return !classFile.contains("$");
String components[] = classFile.split("/");
return !components[components.length-1].contains("$");
}

private void processDexFiles(
Expand Down

0 comments on commit 882e691

Please sign in to comment.