fix: xcommand_t -> Runnable
This commit is contained in:
@@ -502,18 +502,18 @@ public class BaseQ2FileSystem implements FileSystem {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void init() {
|
public void init() {
|
||||||
Cmd.AddCommand("path", new xcommand_t() {
|
Cmd.AddCommand("path", new Runnable() {
|
||||||
public void execute() {
|
public void run() {
|
||||||
path_f();
|
path_f();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
Cmd.AddCommand("link", new xcommand_t() {
|
Cmd.AddCommand("link", new Runnable() {
|
||||||
public void execute() {
|
public void run() {
|
||||||
link_f();
|
link_f();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
Cmd.AddCommand("dir", new xcommand_t() {
|
Cmd.AddCommand("dir", new Runnable() {
|
||||||
public void execute() {
|
public void run() {
|
||||||
dir_f();
|
dir_f();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user