mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-02-16 07:30:16 +00:00
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:
parent
3107df79b5
commit
74a032e0ed
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user