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

@@ -108,7 +108,7 @@ public class Observation implements IBypassHandler
return false;
}
String _command = command.split(" ")[0].toLowerCase();
final String _command = command.split(" ")[0].toLowerCase();
final int param;
try
{
@@ -126,7 +126,7 @@ public class Observation implements IBypassHandler
}
final int[] locCost = LOCATIONS[param];
Location loc = new Location(locCost[0], locCost[1], locCost[2]);
final Location loc = new Location(locCost[0], locCost[1], locCost[2]);
final long cost = locCost[3];
switch (_command)