Ignore:
Timestamp:
2015-05-23T01:40:23+02:00 (9 years ago)
Author:
Don-vip
Message:

Sonar: various code style cleanup:

  • fix copyright
  • classes that should be final
  • order of javadoc At-clauses
  • unexpected spaces before parenthesis
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/actionsupport/LogShowDialog.java

    r7937 r8419  
    2323
    2424
    25     public LogShowDialog (String title, String msg, String log) {
     25    public LogShowDialog(String title, String msg, String log) {
    2626        super(Main.parent, title, new String[] {tr("OK")});
    2727        setButtonIcons(new String[] {"ok.png"});
     
    3232        JPanel p = new JPanel(new GridBagLayout());
    3333        JLabel lbl = new JLabel(msg);
    34        
     34
    3535        lbl.setFont(lbl.getFont().deriveFont(0, 14));
    36        
     36
    3737        p.add(lbl, GBC.eol().insets(5,0,5,0));
    3838        JosmEditorPane txt = new JosmEditorPane();
     
    4141        txt.setEditable(false);
    4242        txt.setOpaque(false);
    43        
     43
    4444        JScrollPane sp = new JScrollPane(txt);
    4545        sp.setOpaque(false);
    4646        sp.setPreferredSize(new Dimension(600,300));
    47        
    48        
     47
     48
    4949        p.add(sp, GBC.eop().insets(5,15,0,0).fill(GBC.HORIZONTAL));
    5050
Note: See TracChangeset for help on using the changeset viewer.