James Moger
2013-06-18 ff7d3cffc7af1f24a1db8d42758943cc05bcbaa0
src/main/java/com/gitblit/models/RefLogEntry.java
File was renamed from src/main/java/com/gitblit/models/PushLogEntry.java
@@ -39,7 +39,7 @@
 * 
 * @author James Moger
 */
public class PushLogEntry implements Serializable, Comparable<PushLogEntry> {
public class RefLogEntry implements Serializable, Comparable<RefLogEntry> {
   private static final long serialVersionUID = 1L;
@@ -67,7 +67,7 @@
    * @param user
    *            the user who pushed
    */
   public PushLogEntry(String repository, Date date, UserModel user) {
   public RefLogEntry(String repository, Date date, UserModel user) {
      this.repository = repository;
      this.date = date;
      this.user = user;
@@ -317,7 +317,7 @@
   }
   @Override
   public int compareTo(PushLogEntry o) {
   public int compareTo(RefLogEntry o) {
      // reverse chronological order
      return o.date.compareTo(date);
   }