James Moger
2013-09-30 cd92bed21e36ec11599da13c3daf0036817a0baf
src/main/java/com/gitblit/client/EditRepositoryDialog.java
@@ -88,8 +88,6 @@
   private JTextField descriptionField;
   private JCheckBox useTickets;
   private JCheckBox useDocs;
   private JCheckBox useIncrementalPushTags;
@@ -211,8 +209,6 @@
      ownersPalette = new JPalette<String>(true);
      useTickets = new JCheckBox(Translation.get("gb.useTicketsDescription"),
            anRepository.useTickets);
      useDocs = new JCheckBox(Translation.get("gb.useDocsDescription"),
            anRepository.useDocs);
      useIncrementalPushTags = new JCheckBox(Translation.get("gb.useIncrementalPushTagsDescription"),
@@ -310,8 +306,6 @@
      fieldsPanel.add(newFieldPanel(Translation.get("gb.gcPeriod"), gcPeriod));
      fieldsPanel.add(newFieldPanel(Translation.get("gb.gcThreshold"), gcThreshold));
      fieldsPanel.add(newFieldPanel(Translation.get("gb.enableTickets"),
            useTickets));
      fieldsPanel
            .add(newFieldPanel(Translation.get("gb.enableDocs"), useDocs));
      fieldsPanel
@@ -570,7 +564,6 @@
            : headRefField.getSelectedItem().toString();
      repository.gcPeriod = (Integer) gcPeriod.getSelectedItem();
      repository.gcThreshold = gcThreshold.getText();
      repository.useTickets = useTickets.isSelected();
      repository.useDocs = useDocs.isSelected();
      repository.useIncrementalPushTags = useIncrementalPushTags.isSelected();
      repository.showRemoteBranches = showRemoteBranches.isSelected();