Skip to content

Commit 52b33a9

Browse files
committed
return null to tab-complete the players
1 parent 8429924 commit 52b33a9

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/main/java/org/maxgamer/quickshop/command/subcommand/SubCommand_TaxAccount.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is a part of project QuickShop, the name is SubCommand_Currency.java
2+
* This file is a part of project QuickShop, the name is SubCommand_TaxAccount.java
33
* Copyright (C) PotatoCraft Studio and contributors
44
*
55
* This program is free software: you can redistribute it and/or modify it
@@ -30,7 +30,6 @@
3030
import org.maxgamer.quickshop.api.shop.Shop;
3131
import org.maxgamer.quickshop.util.Util;
3232

33-
import java.util.Collections;
3433
import java.util.List;
3534
import java.util.UUID;
3635

@@ -73,7 +72,7 @@ public void onCommand(@NotNull Player sender, @NotNull String commandLabel, @Not
7372
@Override
7473
public List<String> onTabComplete(
7574
@NotNull Player sender, @NotNull String commandLabel, @NotNull String[] cmdArg) {
76-
return Collections.emptyList();
75+
return null;
7776
}
7877

7978
}

0 commit comments

Comments
 (0)