We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2abefad commit 5c8a154Copy full SHA for 5c8a154
src/java.scripting/share/classes/javax/script/CompiledScript.java
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2005, 2020, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
@@ -42,6 +42,10 @@
42
* @since 1.6
43
*/
44
public abstract class CompiledScript {
45
+ /**
46
+ * Constructor for subclasses to call.
47
+ */
48
+ public CompiledScript() {}
49
50
/**
51
* Executes the program stored in this <code>CompiledScript</code> object.
0 commit comments