summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/MainGenericRunner.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/compiler/scala/tools/nsc/MainGenericRunner.scala')
-rw-r--r--src/compiler/scala/tools/nsc/MainGenericRunner.scala13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/compiler/scala/tools/nsc/MainGenericRunner.scala b/src/compiler/scala/tools/nsc/MainGenericRunner.scala
index a91cdde18b..9d17154eae 100644
--- a/src/compiler/scala/tools/nsc/MainGenericRunner.scala
+++ b/src/compiler/scala/tools/nsc/MainGenericRunner.scala
@@ -1,5 +1,5 @@
/* NSC -- new Scala compiler
- * Copyright 2006 LAMP/EPFL
+ * Copyright 2006-2007 LAMP/EPFL
* @author Lex Spoon
*/
@@ -18,9 +18,12 @@ import java.lang.reflect.InvocationTargetException
*/
object MainGenericRunner {
/** Append jars found in ${scala.home}/lib to
- * a specified classpath. Also append "." if the
- * input classpath is empty; otherwise do not.
- */
+ * a specified classpath. Also append "." if the
+ * input classpath is empty; otherwise do not.
+ *
+ * @param classpath
+ * @return ...
+ */
def addClasspathExtras(classpath: String): String = {
val scalaHome = getProperty("scala.home")
@@ -70,7 +73,7 @@ object MainGenericRunner {
val version = getProperty("scala.tool.version", "unknown version")
Console.println(
"Scala code runner version " + version + " -- " +
- "(c) 2002-2006 LAMP/EPFL")
+ "(c) 2002-2007 LAMP/EPFL")
return
}