summaryrefslogtreecommitdiff
path: root/src/library/scala/Product.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/scala/Product.scala')
-rw-r--r--src/library/scala/Product.scala3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/library/scala/Product.scala b/src/library/scala/Product.scala
index cb316f2da3..53a838ee9d 100644
--- a/src/library/scala/Product.scala
+++ b/src/library/scala/Product.scala
@@ -42,9 +42,6 @@ trait Product extends Equals {
def next() = { val result = productElement(c); c += 1; result }
}
- @deprecated("use productIterator instead", "2.8.0")
- def productElements: Iterator[Any] = productIterator
-
/** A string used in the `toString` methods of derived classes.
* Implementations may override this method to prepend a string prefix
* to the result of `toString` methods.