My OCD made me do it.

This commit is contained in:
gmcferrin
2013-01-09 23:03:17 -05:00
parent c60cbe824c
commit e193da2cd7
57 changed files with 276 additions and 276 deletions

View File

@ -49,7 +49,7 @@ public class CustomArmorConfig extends ConfigLoader{
private void loadArmor(String armorType, List<Integer> idList) {
ConfigurationSection armorSection = config.getConfigurationSection(armorType);
if(armorSection == null)
if (armorSection == null)
return;
Set<String> armorConfigSet = armorSection.getKeys(false);
@ -88,7 +88,7 @@ public class CustomArmorConfig extends ConfigLoader{
}
public List<Repairable> getLoadedRepairables() {
if(repairables == null) return new ArrayList<Repairable>();
if (repairables == null) return new ArrayList<Repairable>();
return repairables;
}
}

View File

@ -49,7 +49,7 @@ public class CustomBlocksConfig extends ConfigLoader {
private void loadBlocks(String skillType, List<ItemStack> blockList) {
ConfigurationSection skillSection = config.getConfigurationSection(skillType);
if(skillSection == null)
if (skillSection == null)
return;
Set<String> skillConfigSet = skillSection.getKeys(false);

View File

@ -53,7 +53,7 @@ public class CustomToolsConfig extends ConfigLoader {
private void loadTool(String toolType, List<Integer> idList) {
ConfigurationSection toolSection = config.getConfigurationSection(toolType);
if(toolSection == null)
if (toolSection == null)
return;
Set<String> toolConfigSet = toolSection.getKeys(false);
@ -95,7 +95,7 @@ public class CustomToolsConfig extends ConfigLoader {
}
public List<Repairable> getLoadedRepairables() {
if(repairables == null) return new ArrayList<Repairable>();
if (repairables == null) return new ArrayList<Repairable>();
return repairables;
}
}