diff --git a/core/src/main/java/com/seibel/distanthorizons/core/dataObjects/fullData/FullDataPointIdMap.java b/core/src/main/java/com/seibel/distanthorizons/core/dataObjects/fullData/FullDataPointIdMap.java index 3acbf033c..906bc6c65 100644 --- a/core/src/main/java/com/seibel/distanthorizons/core/dataObjects/fullData/FullDataPointIdMap.java +++ b/core/src/main/java/com/seibel/distanthorizons/core/dataObjects/fullData/FullDataPointIdMap.java @@ -80,14 +80,18 @@ public class FullDataPointIdMap //=============// // constructor // //=============// + //region public FullDataPointIdMap(long pos) { this.pos = pos; } + //endregion + //=========// // getters // //=========// + //region /** @see FullDataPointIdMap#getEntry(int) */ public IBiomeWrapper getBiomeWrapper(int id) throws IndexOutOfBoundsException { return this.getEntry(id).biome; } @@ -118,11 +122,14 @@ public class FullDataPointIdMap public long getPos() { return this.pos; } + //endregion + //=========// // setters // //=========// + //region /** * If an entry with the given values already exists nothing will @@ -220,11 +227,14 @@ public class FullDataPointIdMap this.cachedHashCode = 0; } + //endregion + //=============// // serializing // //=============// + //region /** Serializes all contained entries into the given stream, formatted in UTF */ public void serialize(DhDataOutputStream outputStream) throws IOException @@ -387,11 +397,14 @@ public class FullDataPointIdMap } } + //endregion + //===========// // overrides // //===========// + //region @Override public boolean equals(Object other) @@ -427,6 +440,8 @@ public class FullDataPointIdMap this.cachedHashCode = result; } + //endregion + }