James Moger
2014-02-21 b23b67c1cc0b2541580f23c9aec97c0b84a823f4
src/main/java/com/gitblit/models/ServerSettings.java
@@ -26,7 +26,7 @@
 * setting metadata such as name, current value, default value, description, and
 * directives. It is a model class for serialization and presentation, but not
 * for persistence.
 *
 *
 * @author James Moger
 */
public class ServerSettings implements Serializable {
@@ -36,14 +36,6 @@
   private static final long serialVersionUID = 1L;
   public List<String> pushScripts;
   public boolean supportsCredentialChanges;
   public boolean supportsDisplayNameChanges;
   public boolean supportsEmailAddressChanges;
   public boolean supportsTeamMembershipChanges;
   public ServerSettings() {
      settings = new TreeMap<String, SettingModel>();
@@ -62,7 +54,7 @@
   public SettingModel get(String key) {
      return settings.get(key);
   }
   public boolean hasKey(String key) {
      return settings.containsKey(key);
   }