Skip to content

Commit 1974f25

Browse files
committed
comment for java opts
TODO: remove compilationpath param, same as task classpath
1 parent b97a28b commit 1974f25

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/scala/scala/tools/partest/PartestDefaults.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ object PartestDefaults {
99
def sourcePath = propOrElse("partest.srcdir", "files")
1010
def javaCmd = propOrElse("partest.javacmd", "java")
1111
def javacCmd = propOrElse("partest.javac_cmd", "javac")
12-
def javaOpts = propOrElse("partest.java_opts", "")
12+
def javaOpts = propOrElse("partest.java_opts", "") // opts when running java during tests
1313
def scalacOpts = propOrElse("partest.scalac_opts", "")
1414

1515
def testBuild = propOrNone("partest.build")

src/main/scala/scala/tools/partest/PartestTask.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import java.net.URLClassLoader
3333
* - `junitreportdir`.
3434
*
3535
* It also takes the following parameters as nested elements:
36-
* - `compilationpath`.
36+
* - `compilationpath`. -- TODO: this parameter is now redundant: it's the same as the classpath used to run the task
3737
*
3838
* @author Philipp Haller, Adriaan Moors
3939
*/

0 commit comments

Comments
 (0)