summaryrefslogtreecommitdiff
path: root/test/files/presentation/timeofday/src/timeofday.scala
diff options
context:
space:
mode:
authorHubert Plociniczak <hubert.plociniczak@epfl.ch>2011-11-02 14:34:35 +0000
committerHubert Plociniczak <hubert.plociniczak@epfl.ch>2011-11-02 14:34:35 +0000
commitb6778be91900b8161e705dc2598ef7af86842b0b (patch)
treed15e8ec18a37eec212f50f1ace27714d7e7d4d34 /test/files/presentation/timeofday/src/timeofday.scala
parentac6c76f26d884a94d0c9ff54f055d3f9ab750bac (diff)
downloadscala-b6778be91900b8161e705dc2598ef7af86842b0b.tar.gz
scala-b6778be91900b8161e705dc2598ef7af86842b0b.tar.bz2
scala-b6778be91900b8161e705dc2598ef7af86842b0b.zip
Begone t1737...
Diffstat (limited to 'test/files/presentation/timeofday/src/timeofday.scala')
-rw-r--r--test/files/presentation/timeofday/src/timeofday.scala10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/files/presentation/timeofday/src/timeofday.scala b/test/files/presentation/timeofday/src/timeofday.scala
index b0d422a99e..d6355097f1 100644
--- a/test/files/presentation/timeofday/src/timeofday.scala
+++ b/test/files/presentation/timeofday/src/timeofday.scala
@@ -1,16 +1,16 @@
object timeofday {
class DateError extends Exception
- /** Simulating properties in Scala
- * (example 4.2.1 in ScalaReference.pdf)
+ /** Simulating properties in Scala
+ * (example 4.2.1 in ScalaReference.pdf)
*/
class TimeOfDayVar {
private var h, m, s: Int = 0
def hours = h
- /** A method 'ident_=' is a setter for 'ident'. 'code.ident = ...' will
- * be translated to a call to 'ident_='
+ /** A method 'ident_=' is a setter for 'ident'. 'code.ident = ...' will
+ * be translated to a call to 'ident_='
*/
def hours_= (h: Int) =
if (0 <= h && h < 24) this.h = h
@@ -26,7 +26,7 @@ object timeofday {
if (0 <= s && s < 60) this./*!*/s = s
else throw new DateError()
}
-
+
def main(args: Array[String]) {
val d = new TimeOfDayVar
d.hours = 8; d./*!*/minutes = 30; d.seconds = 0