From d30a6a44630673bd1768a7573c14bd45d075e860 Mon Sep 17 00:00:00 2001 From: Jason Penilla <11360596+jpenilla@users.noreply.github.com> Date: Sat, 8 May 2021 19:36:53 -0700 Subject: [PATCH] Don't annotate type parameters using JetBrains annotations (#5600) --- ...Allow-for-Component-suggestion-tooltips-in-AsyncTabC.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);