James Moger
2011-05-27 1f9daef870a8c7a984955166a542628d69012ed5
src/com/gitblit/models/TicketModel.java
File was renamed from src/com/gitblit/wicket/models/TicketModel.java
@@ -13,7 +13,7 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.gitblit.wicket.models;
package com.gitblit.models;
import java.io.Serializable;
import java.text.ParseException;
@@ -36,12 +36,6 @@
   public String author;
   public List<Comment> comments;
   public List<String> tags;
   public TicketModel() {
      state = "open";
      comments = new ArrayList<Comment>();
      tags = new ArrayList<String>();
   }
   public TicketModel(String ticketName) throws ParseException {
      state = "";