Some code cleanup for better logging

Somehow related to issue #154. Now you get a correct warning.
This commit is contained in:
Zixxl 2015-06-16 16:25:48 +02:00
parent 5f92f1fc72
commit e71fd16d11

View file

@ -55,10 +55,8 @@ public class Inscriber {
}
public static class Remove extends BaseListRemoval {
public Remove(ItemStack stack) {
super(stack.getUnlocalizedName(), AEApi.instance().registries().inscriber().getRecipes(), stack);
super("Applied Energistics 2 Inscriber", AEApi.instance().registries().inscriber().getRecipes(), stack);
}
@Override
@ -70,7 +68,10 @@ public class Inscriber {
}
super.apply();
}
@Override
public String getRecipeInfo() {
return stack.getUnlocalizedName();
}
}
}