Преглед на файлове

BETA: Minor typo fix and cleanup.

Zoey76 преди 13 години
родител
ревизия
ccb0b43663
променени са 1 файла, в които са добавени 14 реда и са изтрити 7 реда
  1. 14 7
      L2J_Server_BETA/java/com/l2jserver/gameserver/taskmanager/AutoAnnounceTaskManager.java

+ 14 - 7
L2J_Server_BETA/java/com/l2jserver/gameserver/taskmanager/AutoAnnounceTaskManager.java

@@ -27,7 +27,6 @@ import com.l2jserver.gameserver.ThreadPoolManager;
 import com.l2jserver.gameserver.util.Broadcast;
 
 /**
- * 
  * @author nBd
  */
 public class AutoAnnounceTaskManager
@@ -58,7 +57,9 @@ public class AutoAnnounceTaskManager
 		if (!_announces.isEmpty())
 		{
 			for (AutoAnnouncement a : _announces)
+			{
 				a.stopAnnounce();
+			}
 			
 			_announces.clear();
 		}
@@ -82,7 +83,9 @@ public class AutoAnnounceTaskManager
 				ThreadPoolManager.getInstance().scheduleGeneral(new AutoAnnouncement(id, delay, repeat, text, isCritical), initial);
 				count++;
 				if (_nextId <= id)
+				{
 					_nextId = id + 1;
+				}
 			}
 			data.close();
 			statement.close();
@@ -159,12 +162,12 @@ public class AutoAnnounceTaskManager
 	
 	public class AutoAnnouncement implements Runnable
 	{
-		private int _id;
-		private long _delay;
+		private final int _id;
+		private final long _delay;
 		private int _repeat = -1;
-		private String[] _memo;
+		private final String[] _memo;
 		private boolean _stopped = false;
-		private boolean _isCritical;
+		private final boolean _isCritical;
 		
 		public AutoAnnouncement(int id, long delay, int repeat, String[] memo, boolean isCritical)
 		{
@@ -174,7 +177,9 @@ public class AutoAnnounceTaskManager
 			_memo = memo;
 			_isCritical = isCritical;
 			if (!_announces.contains(this))
+			{
 				_announces.add(this);
+			}
 		}
 		
 		public String[] getMemo()
@@ -195,7 +200,7 @@ public class AutoAnnounceTaskManager
 		@Override
 		public void run()
 		{
-			if (!_stopped && _repeat != 0)
+			if (!_stopped && (_repeat != 0))
 			{
 				for (String text : _memo)
 				{
@@ -203,7 +208,9 @@ public class AutoAnnounceTaskManager
 				}
 				
 				if (_repeat > 0)
+				{
 					_repeat--;
+				}
 				ThreadPoolManager.getInstance().scheduleGeneral(this, _delay);
 			}
 			else
@@ -218,7 +225,7 @@ public class AutoAnnounceTaskManager
 		Broadcast.announceToOnlinePlayers(text, isCritical);
 		if (Config.LOG_AUTO_ANNOUNCEMENTS)
 		{
-			_log.info(isCritical ? "Critical AutoAnnounce" : "AutoAnnounce" + text);
+			_log.info((isCritical ? "Critical AutoAnnounce" : "AutoAnnounce") + text);
 		}
 	}