8008947: ScriptEnvironment ctor should be public

Reviewed-by: lagergren, attila
This commit is contained in:
Athijegannathan Sundararajan 2013-05-22 16:39:48 +05:30
parent 9e9c04939b
commit 41974c2e07
2 changed files with 2 additions and 1 deletions

View File

@ -24,3 +24,4 @@ jcov2/*
.idea/*
test/lib/testng.jar
test/script/external/*
.project

View File

@ -186,7 +186,7 @@ public final class ScriptEnvironment {
* @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();