Ignore:
Timestamp:
2015-10-20T16:37:44+02:00 (8 years ago)
Author:
Don-vip
Message:

checkstyle

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/io/SaveLayersDialog.java

    r8913 r8918  
    110110
    111111        saveSessionAction = new SaveSessionAction();
    112         pnl.add(new JButton(saveSessionAction), GBC.std(1, 0).insets(5, 5, 5, 0). fill(GBC.HORIZONTAL));
     112        pnl.add(new JButton(saveSessionAction), GBC.std(1, 0).insets(5, 5, 5, 0).fill(GBC.HORIZONTAL));
    113113
    114114        discardAndProceedAction = new DiscardAndProceedAction();
     
    117117
    118118        cancelAction = new CancelAction();
    119         pnl.add(new JButton(cancelAction), GBC.std(1, 1).insets(5, 5, 5, 5). fill(GBC.HORIZONTAL));
     119        pnl.add(new JButton(cancelAction), GBC.std(1, 1).insets(5, 5, 5, 5).fill(GBC.HORIZONTAL));
    120120
    121121        JPanel pnl2 = new JPanel();
     
    376376                closeDialog();
    377377            } catch (CancelException ignore) {
     378                if (Main.isTraceEnabled()) {
     379                    Main.trace(ignore.getMessage());
     380                }
    378381            }
    379382        }
Note: See TracChangeset for help on using the changeset viewer.