We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d229035 commit ac992d0Copy full SHA for ac992d0
src/main/java/org/scijava/ui/swing/options/OptionsLookAndFeel.java
@@ -141,7 +141,7 @@ protected void initLookAndFeel() {
141
final String lafClass = UIManager.getLookAndFeel().getClass().getName();
142
143
final LookAndFeelInfo[] lookAndFeels = UIManager.getInstalledLookAndFeels();
144
- final ArrayList<String> lookAndFeelChoices = new ArrayList<String>();
+ final ArrayList<String> lookAndFeelChoices = new ArrayList<>();
145
for (final LookAndFeelInfo lafInfo : lookAndFeels) {
146
final String lafName = lafInfo.getName();
147
lookAndFeelChoices.add(lafInfo.getName());
0 commit comments