From 3e063a21bec94ccb33b86a8e75ac4fbfa4b3f868 Mon Sep 17 00:00:00 2001 From: Rafael Cavazin <rafaelcavazin@gmail.com> Date: Thu, 06 Dec 2012 15:07:55 -0500 Subject: [PATCH] Some language adaptions on pt-br properties --- src/com/gitblit/models/GitNote.java | 12 ++++++++++-- 1 files changed, 10 insertions(+), 2 deletions(-) diff --git a/src/com/gitblit/models/GitNote.java b/src/com/gitblit/models/GitNote.java index 0083637..c333a88 100644 --- a/src/com/gitblit/models/GitNote.java +++ b/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; -- Gitblit v1.9.1