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;
|
||||
|
Reference in New Issue
Block a user