Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
suztomo committed Jan 23, 2024
1 parent 743d74b commit f2ac914
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ public static SecondsAndNanos parseRfc3339ToSecondsAndNanos(String str) {
/** A timestamp represented as the number of seconds and nanoseconds since Epoch. */
public static final class SecondsAndNanos implements Serializable {
private static long serialVersionUID = 1L;

private final long seconds;
private final int nanos;

Expand Down Expand Up @@ -340,7 +340,7 @@ public String toString() {
/** Result of parsing an RFC 3339 string. */
private static class Rfc3339ParseResult implements Serializable {
private static final long serialVersionUID = 1L;

private final long seconds;
private final int nanos;
private final boolean timeGiven;
Expand Down

0 comments on commit f2ac914

Please sign in to comment.