From 241eb0eadd17d8804c50c624c1c74dbc7b5e70e8 Mon Sep 17 00:00:00 2001 From: Auxilor Date: Sun, 26 Sep 2021 13:48:46 +0100 Subject: [PATCH] Javadoc --- .../willfp/ecoenchants/enchantments/util/WeakMetadata.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eco-core/core-plugin/src/main/java/com/willfp/ecoenchants/enchantments/util/WeakMetadata.java b/eco-core/core-plugin/src/main/java/com/willfp/ecoenchants/enchantments/util/WeakMetadata.java index 0e4b89dd..70bac110 100644 --- a/eco-core/core-plugin/src/main/java/com/willfp/ecoenchants/enchantments/util/WeakMetadata.java +++ b/eco-core/core-plugin/src/main/java/com/willfp/ecoenchants/enchantments/util/WeakMetadata.java @@ -8,7 +8,7 @@ import java.util.WeakHashMap; /** * Weak metadata to prevent memory leaks. *

- * Author: Akiranya (Nailm) + * @author Akiranya (Nailm) */ public class WeakMetadata { @@ -18,7 +18,7 @@ public class WeakMetadata { *

K: summoned entity *

V: the target of the summoned entity */ - public final static Map SUMMONED_ENTITY_MEMORY = new WeakHashMap<>(); + public static final Map SUMMONED_ENTITY_MEMORY = new WeakHashMap<>(); /** * Victim entities which the summoned entities target at. @@ -26,5 +26,5 @@ public class WeakMetadata { *

K: entity which the summoned entities target at *

V: nothing (passing null is fine) */ - public final static Map SUMMONED_ENTITY_TARGET = new WeakHashMap<>(); + public static final Map SUMMONED_ENTITY_TARGET = new WeakHashMap<>(); }