summaryrefslogtreecommitdiff
path: root/sources/scala/runtime/BoxedCharArray.scala
diff options
context:
space:
mode:
Diffstat (limited to 'sources/scala/runtime/BoxedCharArray.scala')
-rwxr-xr-xsources/scala/runtime/BoxedCharArray.scala6
1 files changed, 4 insertions, 2 deletions
diff --git a/sources/scala/runtime/BoxedCharArray.scala b/sources/scala/runtime/BoxedCharArray.scala
index 2a09ca43d3..fd16baede2 100755
--- a/sources/scala/runtime/BoxedCharArray.scala
+++ b/sources/scala/runtime/BoxedCharArray.scala
@@ -1,10 +1,13 @@
/* __ *\
** ________ ___ / / ___ Scala API **
-** / __/ __// _ | / / / _ | (c) 2002, LAMP/EPFL **
+** / __/ __// _ | / / / _ | (c) 2002-2005, LAMP/EPFL **
** __\ \/ /__/ __ |/ /__/ __ | **
** /____/\___/_/ |_/____/_/ | | **
** |/ **
\* */
+
+// $Id$
+
package scala.runtime;
final class BoxedCharArray(val value: Array[Char]) extends BoxedArray {
@@ -26,4 +29,3 @@ final class BoxedCharArray(val value: Array[Char]) extends BoxedArray {
override def hashCode(): Int = value.hashCode();
}
-