mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-12-27 03:28:30 +01:00
Added util function concat(List) and concat(string, list) to concatenate lists into a string.
Updated powertool to use new concat method.
This commit is contained in:
parent
c0d21b6044
commit
d2a3240905
@ -14,6 +14,7 @@ import java.text.MessageFormat;
|
||||
import java.util.Calendar;
|
||||
import java.util.Enumeration;
|
||||
import java.util.GregorianCalendar;
|
||||
import java.util.List;
|
||||
import java.util.Locale;
|
||||
import java.util.MissingResourceException;
|
||||
import java.util.ResourceBundle;
|
||||
@ -488,4 +489,26 @@ public class Util
|
||||
{
|
||||
return s.toUpperCase().charAt(0) + s.toLowerCase().substring(1);
|
||||
}
|
||||
|
||||
public static String concat(List list)
|
||||
{
|
||||
return concat(",", list);
|
||||
}
|
||||
|
||||
public static String concat(String seperator, List list)
|
||||
{
|
||||
StringBuilder sb = new StringBuilder();
|
||||
|
||||
for(Object item : list)
|
||||
{
|
||||
if(sb.length() > 0)
|
||||
{
|
||||
sb.append(seperator);
|
||||
}
|
||||
|
||||
sb.append(item.toString());
|
||||
}
|
||||
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
@ -39,7 +39,7 @@ public class Commandpowertool extends EssentialsCommand
|
||||
}
|
||||
else
|
||||
{
|
||||
user.sendMessage(Util.format("powerToolList", powertools.toString(), itemName));
|
||||
user.sendMessage(Util.format("powerToolList", Util.concat(powertools), itemName));
|
||||
}
|
||||
return;
|
||||
}
|
||||
@ -85,7 +85,7 @@ public class Commandpowertool extends EssentialsCommand
|
||||
}
|
||||
|
||||
powertools.add(command);
|
||||
user.sendMessage(Util.format("powerToolAttach", powertools.toString(), itemName));
|
||||
user.sendMessage(Util.format("powerToolAttach", Util.concat(powertools), itemName));
|
||||
}
|
||||
}
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user