Pierre-yves Baloche
2015-03-06 f6cbed8bf3fd630f1d02832240e93fa89dd118e3
src/main/java/com/gitblit/tickets/QueryResult.java
@@ -74,6 +74,14 @@
      return type != null && Type.Proposal == type;
   }
   public boolean isOpen() {
      return !status.isClosed();
   }
   public boolean isClosed() {
      return status.isClosed();
   }
   public boolean isMerged() {
      return Status.Merged == status && !StringUtils.isEmpty(mergeSha);
   }