This commit is contained in:
Auxilor
2021-06-18 11:42:49 +01:00
parent 7f4a0c800e
commit 93794fe454

View File

@@ -48,10 +48,6 @@ public class StringUtils {
*/
public List<String> translateList(@NotNull final List<String> list,
@Nullable final Player player) {
if (list.isEmpty()) {
return list;
}
List<String> translated = new ArrayList<>();
for (String string : list) {
translated.add(translate(string, player));