James Moger
2014-09-30 a9a16b5bf28f7c275800ba4f3f7c67c4528bc884
src/main/java/com/gitblit/Constants.java
@@ -122,6 +122,16 @@
   public static final String R_TICKETS_PATCHSETS = "refs/tickets/";
   public static final String R_MASTER = "refs/heads/master";
   public static final String MASTER = "master";
   public static final String R_DEVELOP = "refs/heads/develop";
   public static final String DEVELOP = "develop";
   public static final String AUTHENTICATION_TYPE = "authentication-type";
   public static String getVersion() {
      String v = Constants.class.getPackage().getImplementationVersion();
      if (v == null) {
@@ -405,11 +415,11 @@
   /**
    * Enumeration of the feed content object types.
    */
   public static enum FeedContentObjectType {
   public static enum FeedObjectType {
      COMMIT, TAG;
      public static FeedContentObjectType forName(String name) {
         for (FeedContentObjectType type : values()) {
      public static FeedObjectType forName(String name) {
         for (FeedObjectType type : values()) {
            if (type.name().equalsIgnoreCase(name)) {
               return type;
            }