Skip to content

Commit

Permalink
SI-6811 Misc. removals in util, testing, io, ...
Browse files Browse the repository at this point in the history
  • Loading branch information
soc committed Jan 17, 2013
1 parent be5554f commit f931833
Show file tree
Hide file tree
Showing 17 changed files with 82 additions and 870 deletions.
2 changes: 1 addition & 1 deletion src/library/scala/Specializable.scala
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ package scala
/** A common supertype for companions of specializable types.
* Should not be extended in user code.
*/
trait Specializable extends SpecializableCompanion
trait Specializable

object Specializable {
// No type parameter in @specialized annotation.
Expand Down
14 changes: 0 additions & 14 deletions src/library/scala/SpecializableCompanion.scala

This file was deleted.

318 changes: 0 additions & 318 deletions src/library/scala/io/BytePickle.scala

This file was deleted.

32 changes: 0 additions & 32 deletions src/library/scala/io/UTF8Codec.scala

This file was deleted.

3 changes: 0 additions & 3 deletions src/library/scala/math/BigInt.scala
Original file line number Diff line number Diff line change
Expand Up @@ -289,9 +289,6 @@ class BigInt(val bigInteger: BigInteger) extends ScalaNumber with ScalaNumericCo
*/
def signum: Int = this.bigInteger.signum()

@deprecated("Use ~bigInt (the unary_~ method) instead", "2.10.0")
def ~ : BigInt = ~this

/** Returns the bitwise complement of this BigInt
*/
def unary_~ : BigInt = new BigInt(this.bigInteger.not())
Expand Down
Loading

0 comments on commit f931833

Please sign in to comment.