Changeset 352
- Timestamp:
- 05/31/07 12:59:25 (1 year ago)
- Files:
-
- trunk/README (modified) (1 diff)
- trunk/dejavu/src/dejavu/lang/JObjectImpl.d (modified) (2 diffs)
- trunk/dejavu/src/dejavu/lang/System.d (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/README
r342 r352 24 24 + DMD 1.014 25 25 + DSSS 0.63 26 + Tango trunk r2 11026 + Tango trunk r2249 27 27 + Mango r962 28 28 trunk/dejavu/src/dejavu/lang/JObjectImpl.d
r347 r352 6 6 import dejavu.lang.JObject; 7 7 import dejavu.lang.String; 8 import dejavu.lang.CloneNotSupportedException; 8 9 9 10 import tango.io.Stdout; … … 51 52 52 53 public dejavu.lang.JObject.JObject clone(){ 53 implMissing( __FILE__, __LINE__ ); 54 return cast( JObjectImpl )null; 54 throw new CloneNotSupportedException(); 55 55 } 56 56 trunk/dejavu/src/dejavu/lang/System.d
r347 r352 12 12 import tango.io.Stdout; 13 13 import tango.core.Type; 14 import tango.util.time. Utc;14 import tango.util.time.Clock; 15 15 import tango.io.Console; 16 16 import tango.io.protocol.Writer; … … 108 108 109 109 public static long currentTimeMillis(){ 110 tango.core.Type.Time time = tango.util.time. Utc.Utc.local();110 tango.core.Type.Time time = tango.util.time.Clock.Clock.now(); 111 111 return time / ( tango.core.Type.Time.TicksPerMillisecond ); 112 112 }
