James Moger
2014-02-28 131da2786c1bf275c07ba628af4254a40d1dc42f
src/main/java/com/gitblit/client/EditRepositoryDialog.java
@@ -88,8 +88,6 @@
   private JTextField descriptionField;
   private JCheckBox useDocs;
   private JCheckBox useIncrementalPushTags;
   private JCheckBox showRemoteBranches;
@@ -207,8 +205,6 @@
      ownersPalette = new JPalette<String>(true);
      useDocs = new JCheckBox(Translation.get("gb.useDocsDescription"),
            anRepository.useDocs);
      useIncrementalPushTags = new JCheckBox(Translation.get("gb.useIncrementalPushTagsDescription"),
            anRepository.useIncrementalPushTags);
      showRemoteBranches = new JCheckBox(
@@ -302,8 +298,6 @@
      fieldsPanel.add(newFieldPanel(Translation.get("gb.gcPeriod"), gcPeriod));
      fieldsPanel.add(newFieldPanel(Translation.get("gb.gcThreshold"), gcThreshold));
      fieldsPanel
            .add(newFieldPanel(Translation.get("gb.enableDocs"), useDocs));
      fieldsPanel
      .add(newFieldPanel(Translation.get("gb.enableIncrementalPushTags"), useIncrementalPushTags));
      fieldsPanel.add(newFieldPanel(Translation.get("gb.showRemoteBranches"),
@@ -558,7 +552,6 @@
            : headRefField.getSelectedItem().toString();
      repository.gcPeriod = (Integer) gcPeriod.getSelectedItem();
      repository.gcThreshold = gcThreshold.getText();
      repository.useDocs = useDocs.isSelected();
      repository.useIncrementalPushTags = useIncrementalPushTags.isSelected();
      repository.showRemoteBranches = showRemoteBranches.isSelected();
      repository.skipSizeCalculation = skipSizeCalculation.isSelected();