General cleanup

This commit is contained in:
Luck
2016-07-15 15:53:13 +01:00
Unverified
parent 42322ef932
commit 33fc4f537a
5 changed files with 6 additions and 7 deletions
@@ -44,7 +44,7 @@ public class Util {
if (strings.isEmpty()) return "&6None";
StringBuilder sb = new StringBuilder();
strings.stream().forEach(s -> sb.append("&6").append(s).append("&7, "));
strings.forEach(s -> sb.append("&6").append(s).append("&7, "));
return sb.delete(sb.length() - 2, sb.length()).toString();
}