From b6778be91900b8161e705dc2598ef7af86842b0b Mon Sep 17 00:00:00 2001 From: Hubert Plociniczak Date: Wed, 2 Nov 2011 14:34:35 +0000 Subject: Begone t1737... --- test/files/presentation/timeofday/src/timeofday.scala | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'test/files/presentation/timeofday/src/timeofday.scala') 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 -- cgit v1.2.3