8008947: ScriptEnvironment ctor should be public

Wed, 22 May 2013 16:39:48 +0530

author
sundar
date
Wed, 22 May 2013 16:39:48 +0530
changeset 283
07cefc062032
parent 282
288ff54da2a5
child 284
66685c69bdb3

8008947: ScriptEnvironment ctor should be public
Reviewed-by: lagergren, attila

.hgignore file | annotate | diff | comparison | revisions
src/jdk/nashorn/internal/runtime/ScriptEnvironment.java file | annotate | diff | comparison | revisions
     1.1 --- a/.hgignore	Tue May 21 10:17:09 2013 -0300
     1.2 +++ b/.hgignore	Wed May 22 16:39:48 2013 +0530
     1.3 @@ -24,3 +24,4 @@
     1.4  .idea/*
     1.5  test/lib/testng.jar
     1.6  test/script/external/*
     1.7 +.project
     2.1 --- a/src/jdk/nashorn/internal/runtime/ScriptEnvironment.java	Tue May 21 10:17:09 2013 -0300
     2.2 +++ b/src/jdk/nashorn/internal/runtime/ScriptEnvironment.java	Wed May 22 16:39:48 2013 +0530
     2.3 @@ -186,7 +186,7 @@
     2.4       * @param out output print writer
     2.5       * @param err error print writer
     2.6       */
     2.7 -    ScriptEnvironment(final Options options, final PrintWriter out, final PrintWriter err) {
     2.8 +    public ScriptEnvironment(final Options options, final PrintWriter out, final PrintWriter err) {
     2.9          this.out = out;
    2.10          this.err = err;
    2.11          this.namespace = new Namespace();

mercurial