summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2003-06-27 12:42:55 +0000
committermichelou <michelou@epfl.ch>2003-06-27 12:42:55 +0000
commit5a0ab443e53e2fbeb8e807d1ad6df19988c1d68f (patch)
tree073fb6000a6487b475e6fbf5a9ff191f5372d1e2 /sources
parentc7f30e40c06a626741da04a345786d17bab1e00b (diff)
downloadscala-5a0ab443e53e2fbeb8e807d1ad6df19988c1d68f.tar.gz
scala-5a0ab443e53e2fbeb8e807d1ad6df19988c1d68f.tar.bz2
scala-5a0ab443e53e2fbeb8e807d1ad6df19988c1d68f.zip
removed tabs
Diffstat (limited to 'sources')
-rw-r--r--sources/scala/DefaultMapModel.scala9
1 files changed, 6 insertions, 3 deletions
diff --git a/sources/scala/DefaultMapModel.scala b/sources/scala/DefaultMapModel.scala
index 61913e542a..36224bcaa3 100644
--- a/sources/scala/DefaultMapModel.scala
+++ b/sources/scala/DefaultMapModel.scala
@@ -4,17 +4,19 @@
** __\ \/ /__/ __ |/ /__/ __ | **
** /____/\___/_/ |_/____/_/ | | **
** |/ **
-** $Id$
\* */
+// $Id$
+
+
package scala;
trait DefaultMapModel[A, B] extends MutableMap[A, B] {
- protected def findEntry(key: A): Option[Entry];
+ protected def findEntry(key: A): Option[Entry];
- protected def addEntry(e: Entry): Unit;
+ protected def addEntry(e: Entry): Unit;
protected def removeEntry(key: A): Unit;
@@ -47,4 +49,5 @@ trait DefaultMapModel[A, B] extends MutableMap[A, B] {
def toPair = Pair(k, value);
override def toString() = k.toString() + " -> " + value;
}
+
}