DailyTaskManager method visibility should be private.

This commit is contained in:
MobiusDevelopment
2022-02-26 22:49:24 +00:00
parent 78b780aa2d
commit 9a358f062b
20 changed files with 47 additions and 47 deletions

View File

@@ -396,7 +396,7 @@ public class DailyTaskManager
LOGGER.info("Clan contributions has been resetted.");
}
public void resetThroneOfHeroes()
private void resetThroneOfHeroes()
{
// Update data for offline players.
try (Connection con = DatabaseFactory.getConnection())
@@ -431,7 +431,7 @@ public class DailyTaskManager
LOGGER.info("Throne of Heroes Entry has been resetted.");
}
public void resetTimedHuntingZones()
private void resetTimedHuntingZones()
{
for (TimedHuntingZoneHolder holder : TimedHuntingZoneData.getInstance().getAllHuntingZones())
{
@@ -467,7 +467,7 @@ public class DailyTaskManager
LOGGER.info("Special Hunting Zones has been resetted.");
}
public void resetTimedHuntingZonesWeekly()
private void resetTimedHuntingZonesWeekly()
{
for (TimedHuntingZoneHolder holder : TimedHuntingZoneData.getInstance().getAllHuntingZones())
{
@@ -503,7 +503,7 @@ public class DailyTaskManager
LOGGER.info("Weekly Special Hunting Zones has been resetted.");
}
public void resetHomunculusResetPoints()
private void resetHomunculusResetPoints()
{
// Update data for offline players.
try (Connection con = DatabaseFactory.getConnection())
@@ -536,7 +536,7 @@ public class DailyTaskManager
LOGGER.info("Homunculus Reset Points has been resetted.");
}
public void resetAttendanceRewards()
private void resetAttendanceRewards()
{
if (Config.ATTENDANCE_REWARDS_SHARE_ACCOUNT)
{