Fix an issue when using the list classpath command with an odex file

This commit is contained in:
Ben Gruver 2016-09-14 20:12:44 -07:00
parent 5544281ed6
commit 12a3fd2712

View File

@ -103,6 +103,7 @@ public class ListClassPathCommand extends Command {
for (String entry: odexFile.getDependencies()) {
System.out.println(entry);
}
return;
} catch (IOException ex) {
throw new RuntimeException(ex);
} catch (DexBackedOdexFile.NotAnOdexFile ex) {