summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2007-11-05 12:38:34 +0000
committermichelou <michelou@epfl.ch>2007-11-05 12:38:34 +0000
commit14553bf9fea023f6f78cbf83f1a6c4827752bd50 (patch)
treeb11677e129c4e55fc90e8b0af5a76409503f667a /src/library
parent99a7957c4f2a970955f3780ace68d7567bf411e9 (diff)
downloadscala-14553bf9fea023f6f78cbf83f1a6c4827752bd50.tar.gz
scala-14553bf9fea023f6f78cbf83f1a6c4827752bd50.tar.bz2
scala-14553bf9fea023f6f78cbf83f1a6c4827752bd50.zip
updated file to match r13198 changes
Diffstat (limited to 'src/library')
-rw-r--r--src/library/scala/Option.scala3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/library/scala/Option.scala b/src/library/scala/Option.scala
index 0f66b16230..f3c413bbb4 100644
--- a/src/library/scala/Option.scala
+++ b/src/library/scala/Option.scala
@@ -18,9 +18,6 @@ object Option {
/** An implicit conversion that converts an option to an iterable value
*/
implicit def option2Iterable[A](xo: Option[A]): Iterable[A] = xo.toList
-
- implicit def someRep[A](implicit elemrep: runtime.TypeRep[A]): runtime.TypeRep[Some[A]] =
- runtime.TypeRep.SomeRep(elemrep)
}
/** This class represents optional values. Instances of <code>Option</code>