Boolean method getRecentlyCompleted renamed to isRecentlyCompleted.

This commit is contained in:
MobiusDevelopment
2021-11-18 13:12:51 +00:00
parent df9fb73a40
commit 42f089e0df
44 changed files with 74 additions and 74 deletions

View File

@@ -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()

View File

@@ -90,7 +90,7 @@ public class DailyMissionPlayerEntry
_lastCompleted = lastCompleted;
}
public boolean getRecentlyCompleted()
public boolean isRecentlyCompleted()
{
return _recentlyCompleted;
}