Format sourcecode

This commit is contained in:
yueh
2017-07-20 21:17:10 +02:00
parent 66437897be
commit 621910df91
295 changed files with 2142 additions and 1562 deletions
@@ -37,7 +37,8 @@ public interface IIC2 extends IIntegrationModule
/**
* Create an IC2 power sink for the given external sink.
*/
default IC2PowerSink createPowerSink( TileEntity tileEntity, IExternalPowerSink externalSink ) {
default IC2PowerSink createPowerSink( TileEntity tileEntity, IExternalPowerSink externalSink )
{
return IC2PowerSinkStub.INSTANCE;
}
@@ -27,10 +27,12 @@ import appeng.integration.IIntegrationModule;
public interface IRC extends IIntegrationModule
{
default void rockCrusher( ItemStack input, ItemStack output ) {
default void rockCrusher( ItemStack input, ItemStack output )
{
}
class Stub extends IIntegrationModule.Stub implements IRC {
class Stub extends IIntegrationModule.Stub implements IRC
{
}
}
@@ -18,15 +18,17 @@
package appeng.integration.abstraction;
import appeng.integration.IIntegrationModule;
/**
* @author GuntherDW
*/
public interface IRF
{
class Stub extends IIntegrationModule.Stub implements IRF
{
class Stub extends IIntegrationModule.Stub implements IRF
{
}
}
}