Removed debugging prints accidentally left in the previous commit

This commit is contained in:
Johannes Gäßler 2017-05-18 19:26:30 +02:00
parent d805ce4613
commit 32db407391

View file

@ -1,7 +1,6 @@
package gregtech.api.objects;
import gregtech.api.enums.Materials;
import gregtech.api.util.GT_Log;
public class MaterialStack implements Cloneable {
public long mAmount;
@ -34,7 +33,6 @@ public class MaterialStack implements Cloneable {
@Override
public String toString() {
String temp1 = "", temp2 = mMaterial.getToolTip(true), temp3 = "", temp4 = "";
System.out.println("EPIK "+mMaterial.mDefaultLocalName+" "+mMaterial.mElement);
if (mAmount > 1) {
temp4 = String.valueOf(mAmount);
if (mMaterial.mMaterialList.size() > 1 || (mMaterial.mMaterialList.size() == 1 && mMaterial.mElement == null)) {