mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-12 04:20:41 +00: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
2 changed files with 25 additions and 2 deletions
|
@ -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 a new issue