James Moger
2011-04-17 9802a766a28bfcb0ae01494ebfa1cbeb11e71809
src/com/gitblit/wicket/models/TicketModel.java
File was renamed from src/com/gitblit/wicket/models/TicGitTicket.java
@@ -6,7 +6,7 @@
import java.util.Date;
import java.util.List;
public class TicGitTicket implements Serializable, Comparable<TicGitTicket> {
public class TicketModel implements Serializable, Comparable<TicketModel> {
   private static final long serialVersionUID = 1L;
@@ -22,13 +22,13 @@
   public List<Comment> comments;
   public List<String> tags;
   public TicGitTicket() {
   public TicketModel() {
      state = "open";
      comments = new ArrayList<Comment>();
      tags = new ArrayList<String>();
   }
   public TicGitTicket(String ticketName) throws ParseException {
   public TicketModel(String ticketName) throws ParseException {
      state = "";
      name = ticketName;
      comments = new ArrayList<Comment>();
@@ -68,7 +68,7 @@
   }
   @Override
   public int compareTo(TicGitTicket o) {
   public int compareTo(TicketModel o) {
      return date.compareTo(o.date);
   }
}