Fix for #359411: make it serializable
git-svn-id: svn://10.0.0.236/trunk@217091 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -38,6 +38,7 @@
|
||||
|
||||
package org.mozilla.javascript;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.lang.reflect.*;
|
||||
|
||||
/**
|
||||
@@ -45,7 +46,8 @@ import java.lang.reflect.*;
|
||||
*
|
||||
* <p> This improves startup time and average memory usage.
|
||||
*/
|
||||
public final class LazilyLoadedCtor {
|
||||
public final class LazilyLoadedCtor implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public LazilyLoadedCtor(ScriptableObject scope,
|
||||
String ctorName, String className, boolean sealed)
|
||||
|
||||
Reference in New Issue
Block a user