From 3e096c007472a17ac3a7333acd0dcbed4359eddb Mon Sep 17 00:00:00 2001 From: SenseiKiwi Date: Mon, 15 Jul 2013 17:00:09 -0400 Subject: [PATCH] Minor Change Removed a comment from Point3D. We don't need to cache hashes since HashMap does so internally. --- StevenDimDoors/mod_pocketDim/Point3D.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/StevenDimDoors/mod_pocketDim/Point3D.java b/StevenDimDoors/mod_pocketDim/Point3D.java index 29f7374..5d4a03d 100644 --- a/StevenDimDoors/mod_pocketDim/Point3D.java +++ b/StevenDimDoors/mod_pocketDim/Point3D.java @@ -77,8 +77,6 @@ public class Point3D implements Serializable { //For instance, points that are within the same chunk or within a few neighboring chunks. Only the low-order //bits of each component would differ. I'll use 8 bits from Y and the 12 bits from X and Z. ~SenseiKiwi - //The result of this could be cached but that would break serialization for this class! >_< - int bit; int hash; int index;