8008947: ScriptEnvironment ctor should be public
authorsundar
Wed, 22 May 2013 16:39:48 +0530
changeset 17762 185a6f04a8ad
parent 17761 bdd9a66c535d
child 17763 f30b7aa0e736
8008947: ScriptEnvironment ctor should be public Reviewed-by: lagergren, attila
nashorn/.hgignore
nashorn/src/jdk/nashorn/internal/runtime/ScriptEnvironment.java
--- a/nashorn/.hgignore	Tue May 21 10:17:09 2013 -0300
+++ b/nashorn/.hgignore	Wed May 22 16:39:48 2013 +0530
@@ -24,3 +24,4 @@
 .idea/*
 test/lib/testng.jar
 test/script/external/*
+.project
--- a/nashorn/src/jdk/nashorn/internal/runtime/ScriptEnvironment.java	Tue May 21 10:17:09 2013 -0300
+++ b/nashorn/src/jdk/nashorn/internal/runtime/ScriptEnvironment.java	Wed May 22 16:39:48 2013 +0530
@@ -186,7 +186,7 @@
      * @param out output print writer
      * @param err error print writer
      */
-    ScriptEnvironment(final Options options, final PrintWriter out, final PrintWriter err) {
+    public ScriptEnvironment(final Options options, final PrintWriter out, final PrintWriter err) {
         this.out = out;
         this.err = err;
         this.namespace = new Namespace();