diff options
author | Jordan Byrne <draknyte1@hotmail.com> | 2018-02-27 01:47:11 +1000 |
---|---|---|
committer | Jordan Byrne <draknyte1@hotmail.com> | 2018-02-27 01:47:11 +1000 |
commit | 04210cce5ade5d59182efbe340fa89a9e7ff678d (patch) | |
tree | 31d161bbda949feaea63c1d16a1f2c691c09de4f /src/Java/gtPlusPlus/core/util/minecraft | |
parent | fe89a9835edc5b10a052cd58669b1826f5b57abd (diff) | |
download | GT5-Unofficial-04210cce5ade5d59182efbe340fa89a9e7ff678d.tar.gz GT5-Unofficial-04210cce5ade5d59182efbe340fa89a9e7ff678d.tar.bz2 GT5-Unofficial-04210cce5ade5d59182efbe340fa89a9e7ff678d.zip |
$ PMD Cleanup.
Diffstat (limited to 'src/Java/gtPlusPlus/core/util/minecraft')
-rw-r--r-- | src/Java/gtPlusPlus/core/util/minecraft/gregtech/recipehandlers/GregtechRecipe.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/core/util/minecraft/gregtech/recipehandlers/GregtechRecipe.java b/src/Java/gtPlusPlus/core/util/minecraft/gregtech/recipehandlers/GregtechRecipe.java index 854f813d2b..70d90001c5 100644 --- a/src/Java/gtPlusPlus/core/util/minecraft/gregtech/recipehandlers/GregtechRecipe.java +++ b/src/Java/gtPlusPlus/core/util/minecraft/gregtech/recipehandlers/GregtechRecipe.java @@ -47,7 +47,7 @@ class LibProxy1 extends LibraryProxy { @Override public boolean addSmeltingAndAlloySmeltingRecipe(final ItemStack aInput, final ItemStack aOutput) { try { - Logger.INFO("Trying with Gt 5.7/5.8 Method."); + //Logger.INFO("Trying with Gt 5.7/5.8 Method."); return (boolean) this.m1.invoke(null, aInput, aOutput); } catch (final Exception e) { throw new RuntimeException(e); @@ -65,7 +65,7 @@ class LibProxy2 extends LibraryProxy { @Override public boolean addSmeltingAndAlloySmeltingRecipe(final ItemStack aInput, final ItemStack aOutput) { try { - Logger.INFO("Trying with Gt 5.9 Method."); + //Logger.INFO("Trying with Gt 5.9 Method."); return (boolean) this.m2.invoke(null, aInput, aOutput, true); } catch (final Exception e) { throw new RuntimeException(e); |