mirror of
https://github.com/corda/corda.git
synced 2025-01-07 13:38:47 +00:00
18 lines
232 B
Java
18 lines
232 B
Java
package java.util;
|
|
|
|
public class Date {
|
|
public final long when;
|
|
|
|
public Date() {
|
|
when = System.currentTimeMillis();
|
|
}
|
|
|
|
public Date(long when) {
|
|
this.when = when;
|
|
}
|
|
|
|
public long getTime() {
|
|
return when;
|
|
}
|
|
}
|