mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-04-25 07:59:44 +00:00
cleanup
git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1592 e251c2fe-e539-e718-e476-b85c1f46cddb
This commit is contained in:
parent
710088fb13
commit
6c862e72b5
1 changed files with 4 additions and 4 deletions
|
@ -422,9 +422,9 @@ public class Settings implements IConf
|
|||
config.load();
|
||||
}
|
||||
|
||||
public ArrayList itemSpawnBlacklist()
|
||||
public List<Integer> itemSpawnBlacklist()
|
||||
{
|
||||
ArrayList epItemSpwn = new ArrayList();
|
||||
final List<Integer> epItemSpwn = new ArrayList<Integer>();
|
||||
for (String itemName : config.getString("item-spawn-blacklist", "").split(",")) {
|
||||
itemName = itemName.trim();
|
||||
if (itemName.isEmpty()) {
|
||||
|
@ -441,9 +441,9 @@ public class Settings implements IConf
|
|||
return epItemSpwn;
|
||||
}
|
||||
|
||||
public ArrayList<Integer> epBlockBreakingBlacklist()
|
||||
public List<Integer> epBlockBreakingBlacklist()
|
||||
{
|
||||
ArrayList<Integer> epBreakList = new ArrayList<Integer>();
|
||||
final List<Integer> epBreakList = new ArrayList<Integer>();
|
||||
for (String itemName : config.getString("protect.blacklist.break", "").split(",")) {
|
||||
itemName = itemName.trim();
|
||||
if (itemName.isEmpty()) {
|
||||
|
|
Loading…
Reference in a new issue