Sync with L2jServer HighFive Mar 25th 2015.
This commit is contained in:
@ -23,8 +23,8 @@ import java.sql.PreparedStatement;
|
||||
import java.sql.ResultSet;
|
||||
import java.sql.SQLException;
|
||||
import java.util.Calendar;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import java.util.concurrent.ConcurrentHashMap;
|
||||
import java.util.concurrent.ScheduledFuture;
|
||||
import java.util.logging.Level;
|
||||
import java.util.logging.Logger;
|
||||
@ -46,10 +46,10 @@ public class RaidBossSpawnManager
|
||||
{
|
||||
private static final Logger _log = Logger.getLogger(RaidBossSpawnManager.class.getName());
|
||||
|
||||
protected static final Map<Integer, L2RaidBossInstance> _bosses = new HashMap<>();
|
||||
protected static final Map<Integer, L2Spawn> _spawns = new HashMap<>();
|
||||
protected static final Map<Integer, StatsSet> _storedInfo = new HashMap<>();
|
||||
protected static final Map<Integer, ScheduledFuture<?>> _schedules = new HashMap<>();
|
||||
protected static final Map<Integer, L2RaidBossInstance> _bosses = new ConcurrentHashMap<>();
|
||||
protected static final Map<Integer, L2Spawn> _spawns = new ConcurrentHashMap<>();
|
||||
protected static final Map<Integer, StatsSet> _storedInfo = new ConcurrentHashMap<>();
|
||||
protected static final Map<Integer, ScheduledFuture<?>> _schedules = new ConcurrentHashMap<>();
|
||||
|
||||
public static enum StatusEnum
|
||||
{
|
||||
|
Reference in New Issue
Block a user