Java 7 final

This commit is contained in:
Olof Larsson 2016-01-25 15:36:20 +01:00
parent bc02fe5949
commit 94006d8dc4

View File

@ -49,7 +49,7 @@ public class CmdFactionsList extends FactionsCommand
// Args
int page = this.readArg();
final MPlayer msender = this.msender;
Predicate<MPlayer> onlinePredicate = PredicateAnd.get(SenderColl.PREDICATE_ONLINE, PredicateVisibleTo.get(sender));
final Predicate<MPlayer> onlinePredicate = PredicateAnd.get(SenderColl.PREDICATE_ONLINE, PredicateVisibleTo.get(sender));
// NOTE: The faction list is quite slow and mostly thread safe.
// We run it asynchronously to spare the primary server thread.