Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-09 21:10:05 +01:00
Removed CommandCallable.getValueFlags().
Parsing of arguments is no longer done automatically so this method is extraneous.
Dieser Commit ist enthalten in:
Ursprung
f3fe8f2ad8
Commit
1b0a6bfcd8
@ -23,20 +23,12 @@ import com.sk89q.minecraft.util.commands.CommandException;
|
|||||||
import com.sk89q.minecraft.util.commands.CommandLocals;
|
import com.sk89q.minecraft.util.commands.CommandLocals;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Set;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A command that can be executed.
|
* A command that can be executed.
|
||||||
*/
|
*/
|
||||||
public interface CommandCallable {
|
public interface CommandCallable {
|
||||||
|
|
||||||
/**
|
|
||||||
* Get a list of value flags used by this command.
|
|
||||||
*
|
|
||||||
* @return a list of value flags
|
|
||||||
*/
|
|
||||||
Set<Character> getValueFlags();
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Execute the correct command based on the input.
|
* Execute the correct command based on the input.
|
||||||
* </p>
|
* </p>
|
||||||
|
@ -101,11 +101,6 @@ public class SimpleDispatcher implements Dispatcher {
|
|||||||
return commands.get(alias.toLowerCase());
|
return commands.get(alias.toLowerCase());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public Set<Character> getValueFlags() {
|
|
||||||
return Collections.emptySet();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean call(String arguments, CommandLocals locals, String[] parentCommands) throws CommandException {
|
public boolean call(String arguments, CommandLocals locals, String[] parentCommands) throws CommandException {
|
||||||
// We have permission for this command if we have permissions for subcommands
|
// We have permission for this command if we have permissions for subcommands
|
||||||
|
@ -273,7 +273,11 @@ class ParametricCallable implements CommandCallable {
|
|||||||
return Collections.emptyList();
|
return Collections.emptyList();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
/**
|
||||||
|
* Get a list of value flags used by this command.
|
||||||
|
*
|
||||||
|
* @return a list of value flags
|
||||||
|
*/
|
||||||
public Set<Character> getValueFlags() {
|
public Set<Character> getValueFlags() {
|
||||||
return valueFlags;
|
return valueFlags;
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren