Committed by
Gerrit Code Review
Removed Deprecated tag on necessary constructor
Change-Id: Ia4791d6880e3b4a20b4ecdcc10b2ba6555846f39
Showing
1 changed file
with
1 additions
and
3 deletions
| ... | @@ -107,11 +107,9 @@ public final class Timestamped<T> { | ... | @@ -107,11 +107,9 @@ public final class Timestamped<T> { |
| 107 | .toString(); | 107 | .toString(); |
| 108 | } | 108 | } |
| 109 | 109 | ||
| 110 | - // Default constructor for serialization | ||
| 111 | /** | 110 | /** |
| 112 | - * @deprecated in Cardinal Release | 111 | + * Constructs an empty object. Required for serialization. |
| 113 | */ | 112 | */ |
| 114 | - @Deprecated | ||
| 115 | private Timestamped() { | 113 | private Timestamped() { |
| 116 | this.value = null; | 114 | this.value = null; |
| 117 | this.timestamp = null; | 115 | this.timestamp = null; | ... | ... |
-
Please register or login to post a comment