Removal of all serialVersionUID declarations.

This commit is contained in:
mobius
2015-02-07 17:47:12 +00:00
parent 6c1d34ccbf
commit 1e166ca657
9 changed files with 14 additions and 26 deletions

View File

@ -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);

View File

@ -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;