All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.marschal.svndiffstat.CommitCoordinate Maven / Gradle / Ivy

The newest version!
package com.github.marschal.svndiffstat;

import java.util.Date;

final class CommitCoordinate {

  private final long revision;
  private final Date date;

  CommitCoordinate(long revision, Date date) {
    this.revision = revision;
    this.date = date;
  }

  long getRevision() {
    return this.revision;
  }

  Date getDate() {
    return this.date;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy