From 7495eab323ca8db1cb449e2392f371ada306a517 Mon Sep 17 00:00:00 2001 From: Aikar Date: Tue, 12 Jun 2018 22:33:38 -0400 Subject: [PATCH] (DEPLOYED ACF) Updated JavaDocs --- .../co/aikar/commands/CommandCompletions.html | 12 ++++++------ .../CommandCompletions.CommandCompletionHandler.html | 6 +++--- docs/acf-core/index-all.html | 4 ++-- ...andCompletions.AsyncCommandCompletionHandler.html | 4 ++-- .../CommandCompletions.CommandCompletionHandler.html | 4 ++-- .../CommandCompletions.SyncCompletionRequired.html | 4 ++-- .../co/aikar/commands/CommandCompletions.html | 4 ++-- 7 files changed, 19 insertions(+), 19 deletions(-) diff --git a/docs/acf-core/co/aikar/commands/CommandCompletions.html b/docs/acf-core/co/aikar/commands/CommandCompletions.html index 254def86..1b9ca3b0 100644 --- a/docs/acf-core/co/aikar/commands/CommandCompletions.html +++ b/docs/acf-core/co/aikar/commands/CommandCompletions.html @@ -188,8 +188,8 @@ extends 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 @@ extends 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 @@ extends

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 @@ extends +