Removal of all serialVersionUID declarations.
This commit is contained in:
@ -2,8 +2,6 @@ package com.l2jserver.commons.javaengine;
|
||||
|
||||
public class CompilationException extends Exception
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public CompilationException(String message)
|
||||
{
|
||||
super(message);
|
||||
|
@ -64,7 +64,6 @@ public class JavaScriptEngine extends AbstractScriptEngine implements Compilable
|
||||
// my implementation for CompiledScript
|
||||
private static class JavaCompiledScript extends CompiledScript implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
private final transient JavaScriptEngine _engine;
|
||||
private transient Class<?> _class;
|
||||
private final Map<String, byte[]> _classBytes;
|
||||
|
@ -52,7 +52,6 @@ public class JumpManager
|
||||
|
||||
public class Track extends HashMap<Integer, JumpWay>
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
public int x = 0;
|
||||
public int y = 0;
|
||||
public int z = 0;
|
||||
@ -60,7 +59,6 @@ public class JumpManager
|
||||
|
||||
public class JumpWay extends ArrayList<JumpNode>
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
}
|
||||
|
||||
public class JumpNode
|
||||
|
@ -20,8 +20,6 @@ package com.l2jserver.gameserver.script;
|
||||
|
||||
public class ParserNotCreatedException extends Exception
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public ParserNotCreatedException()
|
||||
{
|
||||
super("Parser could not be created!");
|
||||
|
@ -25,10 +25,6 @@ package com.l2jserver.loginserver;
|
||||
|
||||
public class HackingException extends Exception
|
||||
{
|
||||
/**
|
||||
* Comment for <code>serialVersionUID</code>
|
||||
*/
|
||||
private static final long serialVersionUID = 4050762693478463029L;
|
||||
String _ip;
|
||||
private final int _connects;
|
||||
|
||||
|
@ -35,7 +35,6 @@ public final class Rnd
|
||||
*/
|
||||
public static final class NonAtomicRandom extends Random
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
private volatile long _seed;
|
||||
|
||||
public NonAtomicRandom()
|
||||
@ -254,7 +253,6 @@ public final class Rnd
|
||||
}
|
||||
}
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
private final ThreadLocal<Seed> _seedLocal;
|
||||
|
||||
public ThreadLocalRandom()
|
||||
|
Reference in New Issue
Block a user