From 2d421178db1938fe79ede56664d01e5376a43a2a Mon Sep 17 00:00:00 2001 From: StevenLawson Date: Thu, 5 Sep 2013 10:33:06 -0400 Subject: [PATCH] This doesn't need to be Serializable anymore. --- src/me/StevenLawson/TotalFreedomMod/TFM_ProtectedArea.java | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/me/StevenLawson/TotalFreedomMod/TFM_ProtectedArea.java b/src/me/StevenLawson/TotalFreedomMod/TFM_ProtectedArea.java index 03d2c1cf..85626adf 100644 --- a/src/me/StevenLawson/TotalFreedomMod/TFM_ProtectedArea.java +++ b/src/me/StevenLawson/TotalFreedomMod/TFM_ProtectedArea.java @@ -16,12 +16,9 @@ import org.bukkit.Location; import org.bukkit.World; import org.bukkit.util.Vector; -public class TFM_ProtectedArea implements Serializable +public class TFM_ProtectedArea { - private static final long serialVersionUID = 2L; - // - public static final double MAX_RADIUS = 50.0D; - // + public static final double MAX_RADIUS = 50.0; private static final Map PROTECTED_AREAS = new HashMap(); private TFM_ProtectedArea()