reformatted all src files (#141)

This commit is contained in:
YoungOnion
2022-09-17 05:08:02 -06:00
committed by GitHub
parent 3328bfcda2
commit 9011273229
1056 changed files with 88127 additions and 110597 deletions
@@ -19,27 +19,23 @@
package appeng.items.tools.quartz;
import appeng.core.features.AEFeature;
import appeng.util.Platform;
import net.minecraft.item.ItemHoe;
import net.minecraft.item.ItemStack;
import appeng.core.features.AEFeature;
import appeng.util.Platform;
public class ToolQuartzHoe extends ItemHoe {
private final AEFeature type;
public class ToolQuartzHoe extends ItemHoe
{
private final AEFeature type;
public ToolQuartzHoe(final AEFeature type) {
super(ToolMaterial.IRON);
this.type = type;
}
public ToolQuartzHoe( final AEFeature type )
{
super( ToolMaterial.IRON );
this.type = type;
}
@Override
public boolean getIsRepairable( final ItemStack a, final ItemStack b )
{
return Platform.canRepair( this.type, a, b );
}
@Override
public boolean getIsRepairable(final ItemStack a, final ItemStack b) {
return Platform.canRepair(this.type, a, b);
}
}