addressed couple warnings

This commit is contained in:
cola98765
2021-09-20 11:12:54 +02:00
parent e615674246
commit 6e86a808a5
2 changed files with 5 additions and 5 deletions
@@ -68,7 +68,7 @@ public class SingleLevelContainer implements LevelContainer
return new SingleLevelContainer((byte) (getDetailLevel() - 1));
}
public SingleLevelContainer(byte inputData[])
public SingleLevelContainer(byte[] inputData)
{
int tempIndex;
int index = 0;
@@ -105,7 +105,7 @@ public class SingleLevelContainer implements LevelContainer
int childPosX;
int childPosZ;
long data = 0;
long data;
posX = LevelPosUtil.getRegionModule(detailLevel, posX);
posZ = LevelPosUtil.getRegionModule(detailLevel, posZ);
for (int x = 0; x <= 1; x++)