Sync with L2jServer HighFive Mar 25th 2015.

This commit is contained in:
MobiusDev
2015-03-25 06:48:51 +00:00
parent e0c66b1412
commit 82606870c0
194 changed files with 2619 additions and 2869 deletions

View File

@@ -18,7 +18,6 @@
*/
package com.l2jserver.gameserver.model.variables;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.atomic.AtomicBoolean;
import com.l2jserver.gameserver.model.StatsSet;
@@ -33,11 +32,6 @@ public abstract class AbstractVariables extends StatsSet implements IRestorable,
{
private final AtomicBoolean _hasChanges = new AtomicBoolean(false);
public AbstractVariables()
{
super(new ConcurrentHashMap<String, Object>());
}
/**
* Overriding following methods to prevent from doing useless database operations if there is no changes since player's login.
*/