We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 012ef5e commit 72d05e9Copy full SHA for 72d05e9
1 file changed
src/main/java/me/hsgamer/bettergui/api/replacer/ElementLookupStringReplacer.java
@@ -5,7 +5,7 @@
5
import me.hsgamer.hscore.common.StringReplacer;
6
import org.jetbrains.annotations.Nullable;
7
8
-import java.util.List;
+import java.util.Collection;
9
10
/**
11
* An extension of {@link StringReplacer} for cases where we want to choose replacers based on {@link MenuElement}'s name
@@ -16,7 +16,7 @@ public interface ElementLookupStringReplacer<T extends MenuElement> extends Look
16
*
17
* @return the elements
18
*/
19
- List<T> getElements();
+ Collection<T> getElements();
20
21
22
* Get the prefix of the lookup string. This is for backward compatibility.
0 commit comments