James Moger
2012-10-30 abcb146f0c4e5c99e5e44349a65e6fd49e9296d9
src/com/gitblit/models/GitNote.java
@@ -17,12 +17,20 @@
import java.io.Serializable;
/**
 * GitNote is a serializable model class that represents a git note. This class
 * retains an instance of the RefModel which contains the commit in which this
 * git note was created.
 *
 * @author James Moger
 *
 */
public class GitNote implements Serializable {
   private static final long serialVersionUID = 1L;
   public String content;
   public RefModel notesRef;
   public final String content;
   public final RefModel notesRef;
   public GitNote(RefModel notesRef, String text) {
      this.notesRef = notesRef;