We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9b3501 commit e9ec9c6Copy full SHA for e9ec9c6
1 file changed
src/main/java/xyz/webmc/wlib/util/WLIBUtil.java
@@ -20,13 +20,13 @@ public static final List<Plugin> getWLIBPlugins() {
20
}
21
22
public static final List<String> getWLIBPluginNames() {
23
- final List<String> plugins = new ArrayList<>();
+ final List<String> ret = new ArrayList<>();
24
25
for (final Plugin plugin : getWLIBPlugins()) {
26
- plugins.add(plugin.getName());
+ ret.add(plugin.getName());
27
28
29
- return plugins;
+ return ret;
30
31
32
public static final void sendStringCountMessage(final CommandSender sender, final String name, final List<String> lst) {
0 commit comments