Added missing final modifiers.

This commit is contained in:
MobiusDev
2015-12-26 12:03:36 +00:00
parent cc92e5d062
commit e0d681a17e
974 changed files with 5919 additions and 5917 deletions

View File

@ -75,7 +75,7 @@ public class AdminGrandBoss implements IAdminCommandHandler
}
else
{
NpcHtmlMessage html = new NpcHtmlMessage(0, 1);
final NpcHtmlMessage html = new NpcHtmlMessage(0, 1);
html.setHtml(HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "html/admin/grandboss.htm"));
activeChar.sendPacket(html);
}
@ -303,7 +303,7 @@ public class AdminGrandBoss implements IAdminCommandHandler
final StatsSet info = GrandBossManager.getInstance().getStatsSet(grandBossId);
final String bossRespawn = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(info.getLong("respawn_time"));
NpcHtmlMessage html = new NpcHtmlMessage(0, 1);
final NpcHtmlMessage html = new NpcHtmlMessage(0, 1);
html.setHtml(HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), htmlPatch));
html.replace("%bossStatus%", text);
html.replace("%bossColor%", textColor);