mirror of
https://github.com/revanced/smali.git
synced 2025-05-02 07:34:28 +02:00
Rename the list classpath command to list dependencies
This commit is contained in:
parent
31ad2bc100
commit
1d26e1be09
@ -67,7 +67,7 @@ public class ListCommand extends Command {
|
||||
ExtendedCommands.addExtendedCommand(jc, new ListDexCommand(hierarchy));
|
||||
ExtendedCommands.addExtendedCommand(jc, new ListVtablesCommand(hierarchy));
|
||||
ExtendedCommands.addExtendedCommand(jc, new ListFieldOffsetsCommand(hierarchy));
|
||||
ExtendedCommands.addExtendedCommand(jc, new ListClassPathCommand(hierarchy));
|
||||
ExtendedCommands.addExtendedCommand(jc, new ListDependenciesCommand(hierarchy));
|
||||
ExtendedCommands.addExtendedCommand(jc, new ListHelpCommand(hierarchy));
|
||||
ExtendedCommands.addExtendedCommand(jc, new ListHlepCommand(hierarchy));
|
||||
}
|
||||
|
@ -47,11 +47,11 @@ import javax.annotation.Nonnull;
|
||||
import java.io.*;
|
||||
import java.util.List;
|
||||
|
||||
@Parameters(commandDescription = "Lists the stored classpath entries in an odex/oat file.")
|
||||
@Parameters(commandDescription = "Lists the stored dependencies in an odex/oat file.")
|
||||
@ExtendedParameters(
|
||||
commandName = "classpath",
|
||||
commandAliases = { "bootclasspath", "cp", "bcp" })
|
||||
public class ListClassPathCommand extends Command {
|
||||
commandName = "dependencies",
|
||||
commandAliases = { "deps", "dep" })
|
||||
public class ListDependenciesCommand extends Command {
|
||||
|
||||
@Parameter(names = {"-h", "-?", "--help"}, help = true,
|
||||
description = "Show usage information")
|
||||
@ -61,7 +61,7 @@ public class ListClassPathCommand extends Command {
|
||||
@ExtendedParameter(argumentNames = "file")
|
||||
private List<String> inputList = Lists.newArrayList();
|
||||
|
||||
public ListClassPathCommand(@Nonnull List<JCommander> commandAncestors) {
|
||||
public ListDependenciesCommand(@Nonnull List<JCommander> commandAncestors) {
|
||||
super(commandAncestors);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user