diff --git a/docs/acf-core/co/aikar/commands/CommandCompletions.html b/docs/acf-core/co/aikar/commands/CommandCompletions.html index 254def867..1b9ca3b01 100644 --- a/docs/acf-core/co/aikar/commands/CommandCompletions.html +++ b/docs/acf-core/co/aikar/commands/CommandCompletions.html @@ -188,8 +188,8 @@

Method Summary

CommandCompletions.CommandCompletionHandler -registerStaticCompletion(String id, - List<String> completions) +registerStaticCompletion(String id, + Collection<String> completions)
Register a static list of command completions that will never change
@@ -210,7 +210,7 @@

Method Summary

CommandCompletions.CommandCompletionHandler registerStaticCompletion(String id, - Supplier<List<String>> supplier) + Supplier<Collection<String>> supplier)
Register a static list of command completions that will never change.
@@ -339,7 +339,7 @@

registerStaticCompletion

  • registerStaticCompletion

    public CommandCompletions.CommandCompletionHandler registerStaticCompletion(String id,
    -                                                                            Supplier<List<String>> supplier)
    + Supplier<Collection<String>> supplier)
    Register a static list of command completions that will never change. The list is obtained from the supplier immediately as part of this method call.
    @@ -350,14 +350,14 @@

    registerStaticCompletion

  • - +