remove redundant duplicated line of code

this line was there twice. 2nd will have no effect. probably cut and paste error?
```
    sizeCombo.setMaximumRowCount(9);
```
This commit is contained in:
Andrew Dunbar 2024-10-31 22:53:51 +07:00 committed by hippietrail
parent 3107df79b5
commit 74a032e0ed

View File

@ -158,7 +158,6 @@ public class FontPropertyEditor extends PropertyEditorSupport {
sizeCombo =
new GComboBox<>(IntStream.rangeClosed(1, 72).boxed().toArray(Integer[]::new));
sizeCombo.setMaximumRowCount(9);
sizeCombo.setMaximumRowCount(9);
sizeCombo.addActionListener(actionListener);
panel.add(sizeCombo);