Skip to content

Commit

Permalink
Reverting changes to AnyVals generated classes in 9a82fc0
Browse files Browse the repository at this point in the history
 - Since the generator was not changed, the classes no longer represent the generated versions
  • Loading branch information
Andrew Phillips committed Apr 22, 2013
1 parent f6323d8 commit 240fa30
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/library/scala/Boolean.scala
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@


package scala package scala


import scala.language.implicitConversions

/** `Boolean` (equivalent to Java's `boolean` primitive type) is a /** `Boolean` (equivalent to Java's `boolean` primitive type) is a
* subtype of [[scala.AnyVal]]. Instances of `Boolean` are not * subtype of [[scala.AnyVal]]. Instances of `Boolean` are not
* represented by an object in the underlying runtime system. * represented by an object in the underlying runtime system.
Expand Down
2 changes: 2 additions & 0 deletions src/library/scala/Double.scala
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@


package scala package scala


import scala.language.implicitConversions

/** `Double`, a 64-bit IEEE-754 floating point number (equivalent to Java's `double` primitive type) is a /** `Double`, a 64-bit IEEE-754 floating point number (equivalent to Java's `double` primitive type) is a
* subtype of [[scala.AnyVal]]. Instances of `Double` are not * subtype of [[scala.AnyVal]]. Instances of `Double` are not
* represented by an object in the underlying runtime system. * represented by an object in the underlying runtime system.
Expand Down
3 changes: 3 additions & 0 deletions src/library/scala/Unit.scala
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@


package scala package scala


import scala.language.implicitConversions


/** `Unit` is a subtype of [[scala.AnyVal]]. There is only one value of type /** `Unit` is a subtype of [[scala.AnyVal]]. There is only one value of type
* `Unit`, `()`, and it is not represented by any object in the underlying * `Unit`, `()`, and it is not represented by any object in the underlying
* runtime system. A method with return type `Unit` is analogous to a Java * runtime system. A method with return type `Unit` is analogous to a Java
Expand Down

0 comments on commit 240fa30

Please sign in to comment.