summaryrefslogtreecommitdiff
path: root/newsources
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2005-08-22 11:38:57 +0000
committermichelou <michelou@epfl.ch>2005-08-22 11:38:57 +0000
commitd5fec7cd487bab5d46dff8b918e355b518142fc4 (patch)
tree3d05216178209f339ee84db6fd9420b9c62d57a6 /newsources
parent15ed0b070e2fbf7893cb2d71e7fafce284af4364 (diff)
downloadscala-d5fec7cd487bab5d46dff8b918e355b518142fc4.tar.gz
scala-d5fec7cd487bab5d46dff8b918e355b518142fc4.tar.bz2
scala-d5fec7cd487bab5d46dff8b918e355b518142fc4.zip
- updated file header.
Diffstat (limited to 'newsources')
-rwxr-xr-xnewsources/scala/ScalaObject.scala11
1 files changed, 6 insertions, 5 deletions
diff --git a/newsources/scala/ScalaObject.scala b/newsources/scala/ScalaObject.scala
index 0df3ceb7cd..21c1fdbfba 100755
--- a/newsources/scala/ScalaObject.scala
+++ b/newsources/scala/ScalaObject.scala
@@ -1,6 +1,6 @@
/* __ *\
** ________ ___ / / ___ Scala API **
-** / __/ __// _ | / / / _ | (c) 2002, LAMP/EPFL **
+** / __/ __// _ | / / / _ | (c) 2002-2005, LAMP/EPFL **
** __\ \/ /__/ __ |/ /__/ __ | **
** /____/\___/_/ |_/____/_/ | | **
** |/ **
@@ -12,8 +12,9 @@ package scala;
trait ScalaObject extends AnyRef {
- /** This method is needed for optimizing pattern matching expressions
- * which match on constructors of case classes.
- */
- def $tag(): Int = 0;
+ /** This method is needed for optimizing pattern matching expressions
+ * which match on constructors of case classes.
+ */
+ def $tag(): Int = 0;
+
}