Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: googleapis/google-http-java-client
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: rng70-or/google-http-java-client
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 4 commits
  • 1 file changed
  • 3 contributors

Commits on Oct 6, 2023

  1. Copy the full SHA
    5680657 View commit details

Commits on Jan 23, 2024

  1. serialVersionUID to be 1L

    suztomo authored Jan 23, 2024
    Copy the full SHA
    b9c587f View commit details
  2. Copy the full SHA
    743d74b View commit details
  3. format

    suztomo committed Jan 23, 2024
    Copy the full SHA
    f2ac914 View commit details
Showing with 4 additions and 0 deletions.
  1. +4 −0 google-http-client/src/main/java/com/google/api/client/util/DateTime.java
Original file line number Diff line number Diff line change
@@ -292,6 +292,8 @@ 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;

@@ -337,6 +339,8 @@ 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;