Changeset 1093
- Timestamp:
- 07/24/08 06:30:14 (2 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/java/org/jcoderz/commons/types/Date.java
r1011 r1093 113 113 114 114 /** Number of nano seconds in a second. */ 115 public static final long NANOS_PER_SECOND 115 public static final long NANOS_PER_SECOND 116 116 = NANOS_PER_MILLI * MILLIS_PER_SECOND; 117 117 118 118 /** 119 119 * Number of seconds in a minute. … … 214 214 * @see java.util.Date#Date() 215 215 */ 216 public Date fromLong (long time)216 public static Date fromLong (long time) 217 217 { 218 218 return new Date(time);
