From 3e67e803fc1f6755248ebc209b540aeae2770625 Mon Sep 17 00:00:00 2001 From: SpaceToad Date: Thu, 3 Apr 2014 08:50:35 +0200 Subject: [PATCH] removed unused code --- common/buildcraft/BuildCraftEnergy.java | 7 ------- 1 file changed, 7 deletions(-) diff --git a/common/buildcraft/BuildCraftEnergy.java b/common/buildcraft/BuildCraftEnergy.java index d35baeda..b5eab9b2 100644 --- a/common/buildcraft/BuildCraftEnergy.java +++ b/common/buildcraft/BuildCraftEnergy.java @@ -100,13 +100,6 @@ public class BuildCraftEnergy extends BuildCraftMod { double fuelFuelMultiplier = BuildCraftCore.mainConfiguration.get(Configuration.CATEGORY_GENERAL, "fuel.fuel.combustion", 1.0F, "adjust energy value of Fuel in Combustion Engines").getDouble(1.0F); BuildCraftCore.mainConfiguration.save(); - class BiomeIdException extends RuntimeException { - - public BiomeIdException(String biome, int id) { - super(String.format("You have a Biome Id conflict at %d for %s", id, biome)); - } - } - if (oilDesertBiomeId > 0) { if (BiomeGenBase.getBiomeGenArray () [oilDesertBiomeId] != null) { oilDesertBiomeId = findUnusedBiomeID("oilDesert");