Skip to content

Commit 5c8a154

Browse files
committedJul 23, 2020
8250237: Address use of default constructors in the javax.script package
Reviewed-by: lancea, psandoz
1 parent 2abefad commit 5c8a154

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎src/java.scripting/share/classes/javax/script/CompiledScript.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2005, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -42,6 +42,10 @@
4242
* @since 1.6
4343
*/
4444
public abstract class CompiledScript {
45+
/**
46+
* Constructor for subclasses to call.
47+
*/
48+
public CompiledScript() {}
4549

4650
/**
4751
* Executes the program stored in this <code>CompiledScript</code> object.

0 commit comments

Comments
 (0)
Please sign in to comment.