pick 97420a31d The big reformat of 2020

This commit is contained in:
yueh
2020-06-16 21:41:28 +02:00
parent 5304b3febe
commit 5225ea426b
2252 changed files with 95466 additions and 118582 deletions
@@ -18,82 +18,76 @@
package appeng.core.settings;
public enum TickRates
{
public enum TickRates {
Interface( 5, 120 ),
Interface(5, 120),
ImportBus( 5, 40 ),
ImportBus(5, 40),
FluidImportBus( 5, 40 ),
FluidImportBus(5, 40),
ExportBus( 5, 60 ),
ExportBus(5, 60),
FluidExportBus( 5, 60 ),
FluidExportBus(5, 60),
AnnihilationPlane( 2, 120 ),
AnnihilationPlane(2, 120),
METunnel( 5, 20 ),
METunnel(5, 20),
Inscriber( 1, 1 ),
Inscriber(1, 1),
Charger( 10, 120 ),
Charger(10, 120),
IOPort( 1, 5 ),
IOPort(1, 5),
VibrationChamber( 10, 40 ),
VibrationChamber(10, 40),
StorageBus( 5, 60 ),
StorageBus(5, 60),
FluidStorageBus( 5, 60 ),
FluidStorageBus(5, 60),
ItemTunnel( 5, 60 ),
ItemTunnel(5, 60),
LightTunnel( 5, 60 ),
LightTunnel(5, 60),
OpenComputersTunnel( 1, 5 ),
OpenComputersTunnel(1, 5),
PressureTunnel( 1, 120 );
PressureTunnel(1, 120);
private final int defaultMin;
private final int defaultMax;
private int min;
private int max;
private final int defaultMin;
private final int defaultMax;
private int min;
private int max;
TickRates( final int min, final int max )
{
this.defaultMin = min;
this.defaultMax = max;
this.min = min;
this.max = max;
}
TickRates(final int min, final int max) {
this.defaultMin = min;
this.defaultMax = max;
this.min = min;
this.max = max;
}
public int getDefaultMin() {
return defaultMin;
}
public int getDefaultMin() {
return defaultMin;
}
public int getDefaultMax() {
return defaultMax;
}
public int getDefaultMax() {
return defaultMax;
}
public int getMax()
{
return this.max;
}
public int getMax() {
return this.max;
}
public void setMax( final int max )
{
this.max = max;
}
public void setMax(final int max) {
this.max = max;
}
public int getMin()
{
return this.min;
}
public int getMin() {
return this.min;
}
public void setMin( final int min )
{
this.min = min;
}
public void setMin(final int min) {
this.min = min;
}
}