File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
google-http-client/src/main/java/com/google/api/client/util Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -292,6 +292,8 @@ public static SecondsAndNanos parseRfc3339ToSecondsAndNanos(String str) {
292
292
293
293
/** A timestamp represented as the number of seconds and nanoseconds since Epoch. */
294
294
public static final class SecondsAndNanos implements Serializable {
295
+ private static long serialVersionUID = 1L ;
296
+
295
297
private final long seconds ;
296
298
private final int nanos ;
297
299
@@ -337,6 +339,8 @@ public String toString() {
337
339
338
340
/** Result of parsing an RFC 3339 string. */
339
341
private static class Rfc3339ParseResult implements Serializable {
342
+ private static final long serialVersionUID = 1L ;
343
+
340
344
private final long seconds ;
341
345
private final int nanos ;
342
346
private final boolean timeGiven ;
You can’t perform that action at this time.
0 commit comments