diff --git a/Spigot-API-Patches/Allow-for-Component-suggestion-tooltips-in-AsyncTabC.patch b/Spigot-API-Patches/Allow-for-Component-suggestion-tooltips-in-AsyncTabC.patch index 8385584cf5..a1edf349db 100644 --- a/Spigot-API-Patches/Allow-for-Component-suggestion-tooltips-in-AsyncTabC.patch +++ b/Spigot-API-Patches/Allow-for-Component-suggestion-tooltips-in-AsyncTabC.patch @@ -93,7 +93,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000 + * + * @return a list of offered completions + */ -+ public @NotNull List<@NotNull Completion> completions() { ++ public @NotNull List completions() { + return this.completions; + } + @@ -107,7 +107,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000 + * + * @param newCompletions the new completions + */ -+ public void completions(final @NotNull List<@NotNull Completion> newCompletions) { ++ public void completions(final @NotNull List newCompletions) { + Validate.notNull(newCompletions, "new completions"); + this.completions.clear(); + this.completions.addAll(newCompletions);