# HG changeset patch # User sundar # Date 1369220988 -19800 # Node ID 07cefc0620324bdf7286afda259a7481c038642e # Parent 288ff54da2a59806028dd519a1816b0c52abc835 8008947: ScriptEnvironment ctor should be public Reviewed-by: lagergren, attila diff -r 288ff54da2a5 -r 07cefc062032 .hgignore --- a/.hgignore Tue May 21 10:17:09 2013 -0300 +++ b/.hgignore Wed May 22 16:39:48 2013 +0530 @@ -24,3 +24,4 @@ .idea/* test/lib/testng.jar test/script/external/* +.project diff -r 288ff54da2a5 -r 07cefc062032 src/jdk/nashorn/internal/runtime/ScriptEnvironment.java --- a/src/jdk/nashorn/internal/runtime/ScriptEnvironment.java Tue May 21 10:17:09 2013 -0300 +++ b/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();