Mercurial > people > rkennke > jdk9-shenandoah-final > nashorn
changeset 282:07cefc062032
8008947: ScriptEnvironment ctor should be public
Reviewed-by: lagergren, attila
author | sundar |
---|---|
date | Wed, 22 May 2013 16:39:48 +0530 |
parents | 288ff54da2a5 |
children | 66685c69bdb3 |
files | .hgignore src/jdk/nashorn/internal/runtime/ScriptEnvironment.java |
diffstat | 2 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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
--- 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();