All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scala.collection.mutable.CloneableCollection.scala Maven / Gradle / Ivy

/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2003-2010, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |    http://scala-lang.org/               **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */



package scala.collection
package mutable

/** The J2ME version of the library defined this trait with a `clone`
 *  method to substitute for the lack of `Object.clone` there.
 *
 *  @since 2.6
 */
@deprecated("use Cloneable instead")
trait CloneableCollection {
  override def clone(): AnyRef = super.clone()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy