Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement java.io.Serializable for some of the classes #373

Open
wants to merge 6 commits into
base: master
Choose a base branch
from

Commits on May 23, 2024

  1. Implement java.io.Serializable for some of the classes

    Implement java.io.Serializable for
    * Instant
    * LocalDate
    * LocalTime
    * LocalDateTime
    * UtcOffset
    
    TimeZone is not `Serializable` because its behavior is
    system-dependent. We can make it `java.io.Serializable` later
    if there is demand.
    
    We are using string representations instead of relying on Java's
    entities being `java.io.Serializable` so that we have more freedom
    to change our implementation later.
    
    Fixes #143
    dkhalanskyjb committed May 23, 2024
    Configuration menu
    Copy the full SHA
    94c5957 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f44c9a4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    32c9cc0 View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2024

  1. Configuration menu
    Copy the full SHA
    42fa2a5 View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2024

  1. Configuration menu
    Copy the full SHA
    ec0662c View commit details
    Browse the repository at this point in the history
  2. Remove some leftovers

    dkhalanskyjb committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    d6238ee View commit details
    Browse the repository at this point in the history