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) {
292292
293293 /** A timestamp represented as the number of seconds and nanoseconds since Epoch. */
294294 public static final class SecondsAndNanos implements Serializable {
295+ private static long serialVersionUID = 1L ;
296+
295297 private final long seconds ;
296298 private final int nanos ;
297299
@@ -337,6 +339,8 @@ public String toString() {
337339
338340 /** Result of parsing an RFC 3339 string. */
339341 private static class Rfc3339ParseResult implements Serializable {
342+ private static final long serialVersionUID = 1L ;
343+
340344 private final long seconds ;
341345 private final int nanos ;
342346 private final boolean timeGiven ;
You can’t perform that action at this time.
0 commit comments