summaryrefslogtreecommitdiff
path: root/src/compiler
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2007-01-25 22:22:57 +0000
committermichelou <michelou@epfl.ch>2007-01-25 22:22:57 +0000
commit8c752c3af8fecb6bd81aaa8761519539d563d155 (patch)
tree6d418d53bee09b942fabef9b4e9d55d0f38b3101 /src/compiler
parent273be26c4079275790ccc1c529747a7b91509a63 (diff)
downloadscala-8c752c3af8fecb6bd81aaa8761519539d563d155.tar.gz
scala-8c752c3af8fecb6bd81aaa8761519539d563d155.tar.bz2
scala-8c752c3af8fecb6bd81aaa8761519539d563d155.zip
updated copyright date and address of Scala web...v2.3.3
updated copyright date and address of Scala website
Diffstat (limited to 'src/compiler')
-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
}