Merged commons folders.

This commit is contained in:
MobiusDev
2015-07-26 11:12:15 +00:00
parent 1fc14085f5
commit 3da51337f6
46 changed files with 74 additions and 90 deletions

View File

@@ -18,14 +18,14 @@
*/ */
package handlers; package handlers;
import handlers.effecthandlers.*;
import java.util.logging.Level; import java.util.logging.Level;
import java.util.logging.Logger; import java.util.logging.Logger;
import com.l2jserver.gameserver.handler.EffectHandler; import com.l2jserver.gameserver.handler.EffectHandler;
import com.l2jserver.gameserver.model.effects.AbstractEffect; import com.l2jserver.gameserver.model.effects.AbstractEffect;
import handlers.effecthandlers.*;
/** /**
* Effect Master handler. * Effect Master handler.
* @author BiggBoss, Zoey76 * @author BiggBoss, Zoey76

View File

@@ -24,8 +24,7 @@ import java.util.Collection;
import java.util.LinkedList; import java.util.LinkedList;
import java.util.StringTokenizer; import java.util.StringTokenizer;
import commons.mmocore.NioNetStringBuffer; import com.l2jserver.commons.mmocore.NioNetStringBuffer;
import com.l2jserver.gameserver.GameServer; import com.l2jserver.gameserver.GameServer;
import com.l2jserver.gameserver.ThreadPoolManager; import com.l2jserver.gameserver.ThreadPoolManager;
import com.l2jserver.gameserver.cache.HtmCache; import com.l2jserver.gameserver.cache.HtmCache;

View File

@@ -16,7 +16,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package commons.geodriver; package com.l2jserver.commons.geodriver;
/** /**
* @author HorridoJoho * @author HorridoJoho

View File

@@ -16,7 +16,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package commons.geodriver; package com.l2jserver.commons.geodriver;
import java.io.IOException; import java.io.IOException;
import java.io.RandomAccessFile; import java.io.RandomAccessFile;
@@ -25,8 +25,8 @@ import java.nio.channels.FileChannel.MapMode;
import java.nio.file.Path; import java.nio.file.Path;
import java.util.concurrent.atomic.AtomicReferenceArray; import java.util.concurrent.atomic.AtomicReferenceArray;
import commons.geodriver.regions.NullRegion; import com.l2jserver.commons.geodriver.regions.NullRegion;
import commons.geodriver.regions.Region; import com.l2jserver.commons.geodriver.regions.Region;
/** /**
* @author HorridoJoho * @author HorridoJoho

View File

@@ -16,7 +16,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package commons.geodriver; package com.l2jserver.commons.geodriver;
/** /**
* @author HorridoJoho * @author HorridoJoho

View File

@@ -16,7 +16,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package commons.geodriver; package com.l2jserver.commons.geodriver;
/** /**
* @author HorridoJoho * @author HorridoJoho

View File

@@ -16,11 +16,11 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package commons.geodriver.blocks; package com.l2jserver.commons.geodriver.blocks;
import java.nio.ByteBuffer; import java.nio.ByteBuffer;
import commons.geodriver.IBlock; import com.l2jserver.commons.geodriver.IBlock;
/** /**
* @author HorridoJoho * @author HorridoJoho

View File

@@ -16,11 +16,11 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package commons.geodriver.blocks; package com.l2jserver.commons.geodriver.blocks;
import java.nio.ByteBuffer; import java.nio.ByteBuffer;
import commons.geodriver.IBlock; import com.l2jserver.commons.geodriver.IBlock;
/** /**
* @author HorridoJoho * @author HorridoJoho

View File

@@ -16,11 +16,11 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package commons.geodriver.blocks; package com.l2jserver.commons.geodriver.blocks;
import java.nio.ByteBuffer; import java.nio.ByteBuffer;
import commons.geodriver.IBlock; import com.l2jserver.commons.geodriver.IBlock;
/** /**
* @author HorridoJoho * @author HorridoJoho

View File

@@ -16,9 +16,9 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package commons.geodriver.regions; package com.l2jserver.commons.geodriver.regions;
import commons.geodriver.IRegion; import com.l2jserver.commons.geodriver.IRegion;
/** /**
* @author HorridoJoho * @author HorridoJoho

View File

@@ -16,15 +16,15 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package commons.geodriver.regions; package com.l2jserver.commons.geodriver.regions;
import java.nio.ByteBuffer; import java.nio.ByteBuffer;
import commons.geodriver.IBlock; import com.l2jserver.commons.geodriver.IBlock;
import commons.geodriver.IRegion; import com.l2jserver.commons.geodriver.IRegion;
import commons.geodriver.blocks.ComplexBlock; import com.l2jserver.commons.geodriver.blocks.ComplexBlock;
import commons.geodriver.blocks.FlatBlock; import com.l2jserver.commons.geodriver.blocks.FlatBlock;
import commons.geodriver.blocks.MultilayerBlock; import com.l2jserver.commons.geodriver.blocks.MultilayerBlock;
/** /**
* @author HorridoJoho * @author HorridoJoho

View File

@@ -1,4 +1,4 @@
package commons.javaengine; package com.l2jserver.commons.javaengine;
public class CompilationException extends Exception public class CompilationException extends Exception
{ {

View File

@@ -21,7 +21,7 @@
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE. * POSSIBILITY OF SUCH DAMAGE.
*/ */
package commons.javaengine; package com.l2jserver.commons.javaengine;
import java.io.PrintWriter; import java.io.PrintWriter;
import java.io.Writer; import java.io.Writer;

View File

@@ -21,7 +21,7 @@
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE. * POSSIBILITY OF SUCH DAMAGE.
*/ */
package commons.javaengine; package com.l2jserver.commons.javaengine;
import java.io.IOException; import java.io.IOException;
import java.io.Reader; import java.io.Reader;

View File

@@ -21,7 +21,7 @@
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE. * POSSIBILITY OF SUCH DAMAGE.
*/ */
package commons.javaengine; package com.l2jserver.commons.javaengine;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Collections; import java.util.Collections;

View File

@@ -21,7 +21,7 @@
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE. * POSSIBILITY OF SUCH DAMAGE.
*/ */
package commons.javaengine; package com.l2jserver.commons.javaengine;
import java.io.File; import java.io.File;
import java.net.MalformedURLException; import java.net.MalformedURLException;

View File

@@ -21,7 +21,7 @@
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE. * POSSIBILITY OF SUCH DAMAGE.
*/ */
package commons.javaengine; package com.l2jserver.commons.javaengine;
import java.io.ByteArrayOutputStream; import java.io.ByteArrayOutputStream;
import java.io.File; import java.io.File;

View File

@@ -15,7 +15,7 @@
* *
* http://www.gnu.org/copyleft/gpl.html * http://www.gnu.org/copyleft/gpl.html
*/ */
package commons.mmocore; package com.l2jserver.commons.mmocore;
import java.nio.ByteBuffer; import java.nio.ByteBuffer;

View File

@@ -15,7 +15,7 @@
* *
* http://www.gnu.org/copyleft/gpl.html * http://www.gnu.org/copyleft/gpl.html
*/ */
package commons.mmocore; package com.l2jserver.commons.mmocore;
import java.nio.channels.SocketChannel; import java.nio.channels.SocketChannel;

View File

@@ -15,7 +15,7 @@
* *
* http://www.gnu.org/copyleft/gpl.html * http://www.gnu.org/copyleft/gpl.html
*/ */
package commons.mmocore; package com.l2jserver.commons.mmocore;
/** /**
* @author KenM * @author KenM

View File

@@ -15,7 +15,7 @@
* *
* http://www.gnu.org/copyleft/gpl.html * http://www.gnu.org/copyleft/gpl.html
*/ */
package commons.mmocore; package com.l2jserver.commons.mmocore;
/** /**
* @author KenM * @author KenM

View File

@@ -15,7 +15,7 @@
* *
* http://www.gnu.org/copyleft/gpl.html * http://www.gnu.org/copyleft/gpl.html
*/ */
package commons.mmocore; package com.l2jserver.commons.mmocore;
import java.nio.ByteBuffer; import java.nio.ByteBuffer;

View File

@@ -15,7 +15,7 @@
* *
* http://www.gnu.org/copyleft/gpl.html * http://www.gnu.org/copyleft/gpl.html
*/ */
package commons.mmocore; package com.l2jserver.commons.mmocore;
import java.nio.ByteBuffer; import java.nio.ByteBuffer;

View File

@@ -15,7 +15,7 @@
* *
* http://www.gnu.org/copyleft/gpl.html * http://www.gnu.org/copyleft/gpl.html
*/ */
package commons.mmocore; package com.l2jserver.commons.mmocore;
import java.io.IOException; import java.io.IOException;
import java.net.InetAddress; import java.net.InetAddress;

View File

@@ -15,7 +15,7 @@
* *
* http://www.gnu.org/copyleft/gpl.html * http://www.gnu.org/copyleft/gpl.html
*/ */
package commons.mmocore; package com.l2jserver.commons.mmocore;
/** /**
* @author Forsaiken * @author Forsaiken

View File

@@ -15,7 +15,7 @@
* *
* http://www.gnu.org/copyleft/gpl.html * http://www.gnu.org/copyleft/gpl.html
*/ */
package commons.mmocore; package com.l2jserver.commons.mmocore;
import java.nio.BufferOverflowException; import java.nio.BufferOverflowException;

View File

@@ -15,7 +15,7 @@
* *
* http://www.gnu.org/copyleft/gpl.html * http://www.gnu.org/copyleft/gpl.html
*/ */
package commons.mmocore; package com.l2jserver.commons.mmocore;
import java.nio.ByteBuffer; import java.nio.ByteBuffer;

View File

@@ -15,7 +15,7 @@
* *
* http://www.gnu.org/copyleft/gpl.html * http://www.gnu.org/copyleft/gpl.html
*/ */
package commons.mmocore; package com.l2jserver.commons.mmocore;
/** /**
* @author KenM * @author KenM

View File

@@ -15,7 +15,7 @@
* *
* http://www.gnu.org/copyleft/gpl.html * http://www.gnu.org/copyleft/gpl.html
*/ */
package commons.mmocore; package com.l2jserver.commons.mmocore;
import java.io.IOException; import java.io.IOException;
import java.net.InetAddress; import java.net.InetAddress;

View File

@@ -15,7 +15,7 @@
* *
* http://www.gnu.org/copyleft/gpl.html * http://www.gnu.org/copyleft/gpl.html
*/ */
package commons.mmocore; package com.l2jserver.commons.mmocore;
/** /**
* @author KenM * @author KenM

View File

@@ -30,12 +30,11 @@ import java.util.logging.Level;
import java.util.logging.LogManager; import java.util.logging.LogManager;
import java.util.logging.Logger; import java.util.logging.Logger;
import commons.mmocore.SelectorConfig;
import commons.mmocore.SelectorThread;
import com.l2jserver.Config; import com.l2jserver.Config;
import com.l2jserver.Server; import com.l2jserver.Server;
import com.l2jserver.commons.database.pool.impl.ConnectionFactory; import com.l2jserver.commons.database.pool.impl.ConnectionFactory;
import com.l2jserver.commons.mmocore.SelectorConfig;
import com.l2jserver.commons.mmocore.SelectorThread;
import com.l2jserver.gameserver.cache.HtmCache; import com.l2jserver.gameserver.cache.HtmCache;
import com.l2jserver.gameserver.data.sql.impl.AnnouncementsTable; import com.l2jserver.gameserver.data.sql.impl.AnnouncementsTable;
import com.l2jserver.gameserver.data.sql.impl.CharNameTable; import com.l2jserver.gameserver.data.sql.impl.CharNameTable;

View File

@@ -23,10 +23,9 @@ import java.nio.file.Path;
import java.util.logging.Level; import java.util.logging.Level;
import java.util.logging.Logger; import java.util.logging.Logger;
import commons.geodriver.Cell;
import commons.geodriver.GeoDriver;
import com.l2jserver.Config; import com.l2jserver.Config;
import com.l2jserver.commons.geodriver.Cell;
import com.l2jserver.commons.geodriver.GeoDriver;
import com.l2jserver.gameserver.data.xml.impl.DoorData; import com.l2jserver.gameserver.data.xml.impl.DoorData;
import com.l2jserver.gameserver.model.L2Object; import com.l2jserver.gameserver.model.L2Object;
import com.l2jserver.gameserver.model.L2World; import com.l2jserver.gameserver.model.L2World;

View File

@@ -34,12 +34,11 @@ import java.util.logging.Level;
import java.util.logging.LogRecord; import java.util.logging.LogRecord;
import java.util.logging.Logger; import java.util.logging.Logger;
import commons.mmocore.MMOClient;
import commons.mmocore.MMOConnection;
import commons.mmocore.ReceivablePacket;
import com.l2jserver.Config; import com.l2jserver.Config;
import com.l2jserver.commons.database.pool.impl.ConnectionFactory; import com.l2jserver.commons.database.pool.impl.ConnectionFactory;
import com.l2jserver.commons.mmocore.MMOClient;
import com.l2jserver.commons.mmocore.MMOConnection;
import com.l2jserver.commons.mmocore.ReceivablePacket;
import com.l2jserver.gameserver.LoginServerThread; import com.l2jserver.gameserver.LoginServerThread;
import com.l2jserver.gameserver.LoginServerThread.SessionKey; import com.l2jserver.gameserver.LoginServerThread.SessionKey;
import com.l2jserver.gameserver.ThreadPoolManager; import com.l2jserver.gameserver.ThreadPoolManager;

View File

@@ -21,13 +21,12 @@ package com.l2jserver.gameserver.network;
import java.nio.ByteBuffer; import java.nio.ByteBuffer;
import java.util.logging.Logger; import java.util.logging.Logger;
import commons.mmocore.IClientFactory;
import commons.mmocore.IMMOExecutor;
import commons.mmocore.IPacketHandler;
import commons.mmocore.MMOConnection;
import commons.mmocore.ReceivablePacket;
import com.l2jserver.Config; import com.l2jserver.Config;
import com.l2jserver.commons.mmocore.IClientFactory;
import com.l2jserver.commons.mmocore.IMMOExecutor;
import com.l2jserver.commons.mmocore.IPacketHandler;
import com.l2jserver.commons.mmocore.MMOConnection;
import com.l2jserver.commons.mmocore.ReceivablePacket;
import com.l2jserver.gameserver.network.L2GameClient.GameClientState; import com.l2jserver.gameserver.network.L2GameClient.GameClientState;
import com.l2jserver.gameserver.network.clientpackets.*; import com.l2jserver.gameserver.network.clientpackets.*;
import com.l2jserver.gameserver.network.clientpackets.adenadistribution.RequestDivideAdena; import com.l2jserver.gameserver.network.clientpackets.adenadistribution.RequestDivideAdena;

View File

@@ -22,9 +22,8 @@ import java.nio.BufferUnderflowException;
import java.util.logging.Level; import java.util.logging.Level;
import java.util.logging.Logger; import java.util.logging.Logger;
import commons.mmocore.ReceivablePacket;
import com.l2jserver.Config; import com.l2jserver.Config;
import com.l2jserver.commons.mmocore.ReceivablePacket;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance; import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.network.L2GameClient; import com.l2jserver.gameserver.network.L2GameClient;
import com.l2jserver.gameserver.network.SystemMessageId; import com.l2jserver.gameserver.network.SystemMessageId;

View File

@@ -21,8 +21,7 @@ package com.l2jserver.gameserver.network.serverpackets;
import java.util.logging.Level; import java.util.logging.Level;
import java.util.logging.Logger; import java.util.logging.Logger;
import commons.mmocore.SendablePacket; import com.l2jserver.commons.mmocore.SendablePacket;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance; import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.model.interfaces.IPositionable; import com.l2jserver.gameserver.model.interfaces.IPositionable;
import com.l2jserver.gameserver.model.interfaces.IUpdateTypeComponent; import com.l2jserver.gameserver.model.interfaces.IUpdateTypeComponent;

View File

@@ -18,8 +18,7 @@
*/ */
package com.l2jserver.gameserver.pathfinding.cellnodes; package com.l2jserver.gameserver.pathfinding.cellnodes;
import commons.geodriver.Cell; import com.l2jserver.commons.geodriver.Cell;
import com.l2jserver.gameserver.GeoData; import com.l2jserver.gameserver.GeoData;
import com.l2jserver.gameserver.pathfinding.AbstractNodeLoc; import com.l2jserver.gameserver.pathfinding.AbstractNodeLoc;

View File

@@ -41,9 +41,8 @@ import javax.script.ScriptEngineManager;
import javax.script.ScriptException; import javax.script.ScriptException;
import javax.script.SimpleScriptContext; import javax.script.SimpleScriptContext;
import commons.javaengine.JavaScriptEngineFactory;
import com.l2jserver.Config; import com.l2jserver.Config;
import com.l2jserver.commons.javaengine.JavaScriptEngineFactory;
/** /**
* Caches script engines and provides functionality for executing and managing scripts. * Caches script engines and provides functionality for executing and managing scripts.

View File

@@ -20,8 +20,7 @@ package com.l2jserver.gameserver.util;
import java.awt.Color; import java.awt.Color;
import commons.geodriver.Cell; import com.l2jserver.commons.geodriver.Cell;
import com.l2jserver.gameserver.GeoData; import com.l2jserver.gameserver.GeoData;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance; import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.network.serverpackets.ExServerPrimitive; import com.l2jserver.gameserver.network.serverpackets.ExServerPrimitive;

View File

@@ -31,12 +31,11 @@ import java.util.logging.Level;
import java.util.logging.LogManager; import java.util.logging.LogManager;
import java.util.logging.Logger; import java.util.logging.Logger;
import commons.mmocore.SelectorConfig;
import commons.mmocore.SelectorThread;
import com.l2jserver.Config; import com.l2jserver.Config;
import com.l2jserver.Server; import com.l2jserver.Server;
import com.l2jserver.commons.database.pool.impl.ConnectionFactory; import com.l2jserver.commons.database.pool.impl.ConnectionFactory;
import com.l2jserver.commons.mmocore.SelectorConfig;
import com.l2jserver.commons.mmocore.SelectorThread;
import com.l2jserver.loginserver.network.L2LoginClient; import com.l2jserver.loginserver.network.L2LoginClient;
import com.l2jserver.loginserver.network.L2LoginPacketHandler; import com.l2jserver.loginserver.network.L2LoginPacketHandler;
import com.l2jserver.status.Status; import com.l2jserver.status.Status;

View File

@@ -25,12 +25,11 @@ import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeUnit;
import java.util.logging.Logger; import java.util.logging.Logger;
import commons.mmocore.IAcceptFilter; import com.l2jserver.commons.mmocore.IAcceptFilter;
import commons.mmocore.IClientFactory; import com.l2jserver.commons.mmocore.IClientFactory;
import commons.mmocore.IMMOExecutor; import com.l2jserver.commons.mmocore.IMMOExecutor;
import commons.mmocore.MMOConnection; import com.l2jserver.commons.mmocore.MMOConnection;
import commons.mmocore.ReceivablePacket; import com.l2jserver.commons.mmocore.ReceivablePacket;
import com.l2jserver.loginserver.network.L2LoginClient; import com.l2jserver.loginserver.network.L2LoginClient;
import com.l2jserver.loginserver.network.serverpackets.Init; import com.l2jserver.loginserver.network.serverpackets.Init;
import com.l2jserver.util.IPv4Filter; import com.l2jserver.util.IPv4Filter;

View File

@@ -26,11 +26,10 @@ import java.util.HashMap;
import java.util.Map; import java.util.Map;
import java.util.logging.Logger; import java.util.logging.Logger;
import commons.mmocore.MMOClient;
import commons.mmocore.MMOConnection;
import commons.mmocore.SendablePacket;
import com.l2jserver.Config; import com.l2jserver.Config;
import com.l2jserver.commons.mmocore.MMOClient;
import com.l2jserver.commons.mmocore.MMOConnection;
import com.l2jserver.commons.mmocore.SendablePacket;
import com.l2jserver.loginserver.LoginController; import com.l2jserver.loginserver.LoginController;
import com.l2jserver.loginserver.SessionKey; import com.l2jserver.loginserver.SessionKey;
import com.l2jserver.loginserver.network.serverpackets.L2LoginServerPacket; import com.l2jserver.loginserver.network.serverpackets.L2LoginServerPacket;

View File

@@ -21,9 +21,8 @@ package com.l2jserver.loginserver.network;
import java.nio.ByteBuffer; import java.nio.ByteBuffer;
import java.util.logging.Logger; import java.util.logging.Logger;
import commons.mmocore.IPacketHandler; import com.l2jserver.commons.mmocore.IPacketHandler;
import commons.mmocore.ReceivablePacket; import com.l2jserver.commons.mmocore.ReceivablePacket;
import com.l2jserver.loginserver.network.L2LoginClient.LoginClientState; import com.l2jserver.loginserver.network.L2LoginClient.LoginClientState;
import com.l2jserver.loginserver.network.clientpackets.AuthGameGuard; import com.l2jserver.loginserver.network.clientpackets.AuthGameGuard;
import com.l2jserver.loginserver.network.clientpackets.RequestAuthLogin; import com.l2jserver.loginserver.network.clientpackets.RequestAuthLogin;

View File

@@ -21,8 +21,7 @@ package com.l2jserver.loginserver.network.clientpackets;
import java.util.logging.Level; import java.util.logging.Level;
import java.util.logging.Logger; import java.util.logging.Logger;
import commons.mmocore.ReceivablePacket; import com.l2jserver.commons.mmocore.ReceivablePacket;
import com.l2jserver.loginserver.network.L2LoginClient; import com.l2jserver.loginserver.network.L2LoginClient;
/** /**

View File

@@ -18,8 +18,7 @@
*/ */
package com.l2jserver.loginserver.network.serverpackets; package com.l2jserver.loginserver.network.serverpackets;
import commons.mmocore.SendablePacket; import com.l2jserver.commons.mmocore.SendablePacket;
import com.l2jserver.loginserver.network.L2LoginClient; import com.l2jserver.loginserver.network.L2LoginClient;
/** /**

View File

@@ -26,7 +26,7 @@ import java.util.Iterator;
import java.util.Map.Entry; import java.util.Map.Entry;
import java.util.logging.Logger; import java.util.logging.Logger;
import commons.mmocore.IAcceptFilter; import com.l2jserver.commons.mmocore.IAcceptFilter;
/** /**
* IPv4 filter. * IPv4 filter.