Skip to content

Commit e9ec9c6

Browse files
committed
fix: dont hide local field
1 parent a9b3501 commit e9ec9c6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/xyz/webmc/wlib/util/WLIBUtil.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ public static final List<Plugin> getWLIBPlugins() {
2020
}
2121

2222
public static final List<String> getWLIBPluginNames() {
23-
final List<String> plugins = new ArrayList<>();
23+
final List<String> ret = new ArrayList<>();
2424

2525
for (final Plugin plugin : getWLIBPlugins()) {
26-
plugins.add(plugin.getName());
26+
ret.add(plugin.getName());
2727
}
2828

29-
return plugins;
29+
return ret;
3030
}
3131

3232
public static final void sendStringCountMessage(final CommandSender sender, final String name, final List<String> lst) {

0 commit comments

Comments
 (0)