summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
Diffstat (limited to 'sources')
-rw-r--r--sources/scala/Tuple.tmpl8
1 files changed, 4 insertions, 4 deletions
diff --git a/sources/scala/Tuple.tmpl b/sources/scala/Tuple.tmpl
index a04d34c613..2c41dc9b49 100644
--- a/sources/scala/Tuple.tmpl
+++ b/sources/scala/Tuple.tmpl
@@ -8,14 +8,14 @@
** |/ **
\* */
-package scala with {
- case class Tuple[#n#][#type-params#]([#value-params#]) extends scala.Object with {
+package scala {
+ case class Tuple[#n#][#type-params#]([#value-params#]) extends scala.Object {
override def hashCode() = [#hash-code#];
override def == (other: Any) =
- if (other.is[Tuple[#n#][#type-params#]]) {
- val that = other.as[Tuple[#n#][#type-params#]];
+ if (other is Tuple[#n#][#type-params#]) {
+ val that = other as Tuple[#n#][#type-params#];
[#equal#]
} else Boolean.False;