diff options
author | Marcin Chrzanowski <marcin.j.chrzanowski@gmail.com> | 2019-10-22 11:51:09 +0200 |
---|---|---|
committer | Marcin Chrzanowski <marcin.j.chrzanowski@gmail.com> | 2019-10-22 11:51:09 +0200 |
commit | ec6d8c49f327e80025154776326155449c0fc812 (patch) | |
tree | d81a32a676b5e17e55f609a4e7a87c97ac063391 /src/pl/edu/mimuw | |
parent | a735391c3100a757fa568f135c43249b6ff90334 (diff) |
Fix ValueTime comments
Diffstat (limited to 'src/pl/edu/mimuw')
-rw-r--r-- | src/pl/edu/mimuw/cloudatlas/model/ValueTime.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/pl/edu/mimuw/cloudatlas/model/ValueTime.java b/src/pl/edu/mimuw/cloudatlas/model/ValueTime.java index 0d4747d..8dd04fc 100644 --- a/src/pl/edu/mimuw/cloudatlas/model/ValueTime.java +++ b/src/pl/edu/mimuw/cloudatlas/model/ValueTime.java @@ -32,12 +32,11 @@ import pl.edu.mimuw.cloudatlas.model.Value; import pl.edu.mimuw.cloudatlas.model.ValueTime; /** - * A class representing the POSIX time in milliseconds. This is a simple wrapper of a Java <code>Long</code> object. + * A class representing a POSIX time in milliseconds. This is a simple wrapper of a Java <code>Long</code> object. */ public class ValueTime extends ValueSimple<Long> { /** - * A format of string representing <code>ValueTime</code> when constructing from or converting to a - * <code>String</code> object. + * A format string for constructing from or converting to a <code>String</code> object. */ public static final DateFormat TIME_FORMAT = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss.SSS"); |