diff --git a/data/plugin/com/l2jserver/plugin/PluginLoader.java b/data/plugin/com/l2jserver/plugin/PluginLoader.java index 10c0dcbf5..e6b392899 100644 --- a/data/plugin/com/l2jserver/plugin/PluginLoader.java +++ b/data/plugin/com/l2jserver/plugin/PluginLoader.java @@ -42,6 +42,9 @@ public class PluginLoader implements Loader, Unloader { /** * Returns list of suitable Template classes to load/unload * + * @param classes + * loaded classes + * * @return list of Template classes to load/unload */ @SuppressWarnings({ "unchecked", "unused" }) diff --git a/data/script/ai/com/l2jserver/game/ai/MonsterAI.java b/data/script/ai/com/l2jserver/game/ai/MonsterAI.java index ad1ace790..784cc3980 100644 --- a/data/script/ai/com/l2jserver/game/ai/MonsterAI.java +++ b/data/script/ai/com/l2jserver/game/ai/MonsterAI.java @@ -26,6 +26,7 @@ import com.l2jserver.model.world.NPC; public class MonsterAI extends NPCAI { /** * @param creature + * the creature */ protected MonsterAI(NPC creature) { super(creature); diff --git a/src/main/java/com/l2jserver/L2JGameServerMain.java b/src/main/java/com/l2jserver/L2JGameServerMain.java index 46e258f1b..f3279307f 100644 --- a/src/main/java/com/l2jserver/L2JGameServerMain.java +++ b/src/main/java/com/l2jserver/L2JGameServerMain.java @@ -38,7 +38,9 @@ import com.l2jserver.service.network.keygen.BlowfishKeygenService; public class L2JGameServerMain { /** * Main method - * @param args no arguments are used + * + * @param args + * no arguments are used */ public static void main(String[] args) { final L2JGameServer server = new L2JGameServer(); diff --git a/src/main/java/com/l2jserver/game/ai/desires/Desire.java b/src/main/java/com/l2jserver/game/ai/desires/Desire.java index ab867079e..6868a235a 100644 --- a/src/main/java/com/l2jserver/game/ai/desires/Desire.java +++ b/src/main/java/com/l2jserver/game/ai/desires/Desire.java @@ -30,6 +30,7 @@ public interface Desire extends Comparable { * * @return hashcode for this object */ + @Override int hashCode(); /** @@ -39,6 +40,7 @@ public interface Desire extends Comparable { * another object to compare with * @return result of object comparation */ + @Override boolean equals(Object obj); /** diff --git a/src/main/java/com/l2jserver/game/ai/desires/DesireIteratorFilter.java b/src/main/java/com/l2jserver/game/ai/desires/DesireIteratorFilter.java index 14451345e..67b628403 100644 --- a/src/main/java/com/l2jserver/game/ai/desires/DesireIteratorFilter.java +++ b/src/main/java/com/l2jserver/game/ai/desires/DesireIteratorFilter.java @@ -24,7 +24,8 @@ package com.l2jserver.game.ai.desires; public interface DesireIteratorFilter { /** * This method is called each time for every desire that is in the queue.
- *
{@link java.util.ConcurrentModificationException} will be thrown by + *
+ * {@link java.util.ConcurrentModificationException} will be thrown by * {@link com.l2jserver.game.ai.desires.DesireQueue#iterateDesires(DesireIteratorHandler, DesireIteratorFilter[])} * if any of the following methods will be called from here: *