mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2026-04-09 17:26:22 +00:00
Cleanup sources
This commit is contained in:
@@ -136,8 +136,7 @@ public class Mantle {
|
||||
throw new RuntimeException("The Mantle is closed");
|
||||
}
|
||||
|
||||
if(y < 0)
|
||||
{
|
||||
if (y < 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -170,8 +169,7 @@ public class Mantle {
|
||||
throw new RuntimeException("The Mantle is closed");
|
||||
}
|
||||
|
||||
if(y < 0)
|
||||
{
|
||||
if (y < 0) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@@ -259,8 +257,7 @@ public class Mantle {
|
||||
*/
|
||||
@RegionCoordinates
|
||||
private TectonicPlate get(int x, int z) {
|
||||
if(io.get())
|
||||
{
|
||||
if (io.get()) {
|
||||
try {
|
||||
return getSafe(x, z).get();
|
||||
} catch (InterruptedException e) {
|
||||
@@ -272,8 +269,7 @@ public class Mantle {
|
||||
|
||||
TectonicPlate p = loadedRegions.get(key(x, z));
|
||||
|
||||
if(p != null)
|
||||
{
|
||||
if (p != null) {
|
||||
return p;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user