Extremem/src/main/java/com/amazon/corretto/benchmark/extremem/RelativeTime.java [267:274]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  int compare(RelativeTime other) {
    if (this.s == other.s) {
      if (this.ns < other.ns) return -1;
      else if (this.ns == other.ns) return 0;
      else return 1;
    } else if (this.s > other.s) return 1;
    else return -1;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



Extremem/src/main/java/com/amazon/corretto/benchmark/extremem/AbsoluteTime.java [272:279]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  int compare(AbsoluteTime other) {
    if (this.s == other.s) {
      if (this.ns < other.ns) return -1;
      else if (this.ns == other.ns) return 0;
      else return 1;
    } else if (this.s > other.s) return 1;
    else return -1;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



