Ignore:
Timestamp:
2015-06-20T23:42:21+02:00 (9 years ago)
Author:
Don-vip
Message:

checkstyle: enable relevant whitespace checks and fix them

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/AboutAction.java

    r8442 r8510  
    8787                "</html>");
    8888        info.add(label, GBC.eol().fill(GBC.HORIZONTAL).insets(10, 0, 0, 0));
    89         info.add(new JLabel(tr("Homepage")), GBC.std().insets(10,0,10,0));
    90         info.add(new UrlLabel(Main.getJOSMWebsite(),2), GBC.eol().fill(GBC.HORIZONTAL));
    91         info.add(GBC.glue(0,5), GBC.eol());
    92         info.add(new JLabel(tr("Bug Reports")), GBC.std().insets(10,0,10,0));
     89        info.add(new JLabel(tr("Homepage")), GBC.std().insets(10, 0, 10, 0));
     90        info.add(new UrlLabel(Main.getJOSMWebsite(), 2), GBC.eol().fill(GBC.HORIZONTAL));
     91        info.add(GBC.glue(0, 5), GBC.eol());
     92        info.add(new JLabel(tr("Bug Reports")), GBC.std().insets(10, 0, 10, 0));
    9393        info.add(BugReportExceptionHandler.getBugReportUrlLabel(Utils.strip(ShowStatusReportAction.getReportHeader())),
    9494                GBC.eol().fill(GBC.HORIZONTAL));
     
    112112
    113113    private JScrollPane createScrollPane(JosmTextArea area) {
    114         area.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
     114        area.setBorder(BorderFactory.createEmptyBorder(5, 5, 5, 5));
    115115        area.setOpaque(false);
    116116        JScrollPane sp = new JScrollPane(area);
Note: See TracChangeset for help on using the changeset viewer.