Boolean method getRecentlyCompleted renamed to isRecentlyCompleted.
This commit is contained in:
@@ -81,7 +81,7 @@ public abstract class AbstractDailyMissionHandler extends ListenersContainer
|
||||
public boolean isRecentlyCompleted(Player player)
|
||||
{
|
||||
final DailyMissionPlayerEntry entry = getPlayerEntry(player.getObjectId(), false);
|
||||
return (entry != null) && entry.getRecentlyCompleted();
|
||||
return (entry != null) && entry.isRecentlyCompleted();
|
||||
}
|
||||
|
||||
public synchronized void reset()
|
||||
|
@@ -90,7 +90,7 @@ public class DailyMissionPlayerEntry
|
||||
_lastCompleted = lastCompleted;
|
||||
}
|
||||
|
||||
public boolean getRecentlyCompleted()
|
||||
public boolean isRecentlyCompleted()
|
||||
{
|
||||
return _recentlyCompleted;
|
||||
}
|
||||
|
Reference in New Issue
Block a user