Skip to content

Commit

Permalink
Fix Spotless error (2)
Browse files Browse the repository at this point in the history
  • Loading branch information
NebelNidas committed Oct 9, 2023
1 parent 056647b commit 1c8219d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ public RenameMappingsGui(MainWindow mainWindow) {

public void addMenuActions(JMenu menu) {
openMappingsMenu = new JMenu(NLS.str("file.open_mappings"));
openMappingsMenu.add(new ActionHandler(ev ->
openMappings(MappingFormat.PROGUARD_FILE, true)).withNameAndDesc("Proguard (inverted)"));
openMappingsMenu.add(new ActionHandler(ev -> openMappings(MappingFormat.PROGUARD_FILE, true))
.withNameAndDesc("Proguard (inverted)"));
openMappingsMenu.add(new ActionHandler(ev -> openMappings(MappingFormat.PROGUARD_FILE, false)).withNameAndDesc("Proguard"));

saveMappingsAction = new ActionHandler(this::saveMappings).withNameAndDesc(NLS.str("file.save_mappings"));
Expand Down

0 comments on commit 1c8219d

Please sign in to comment.