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/gui/SplashScreen.java

    r8509 r8510  
    5656
    5757        // Add a nice border to the main splash screen
    58         JPanel contentPane = (JPanel)this.getContentPane();
     58        JPanel contentPane = (JPanel) this.getContentPane();
    5959        Border margin = new EtchedBorder(1, Color.white, Color.gray);
    6060        contentPane.setBorder(margin);
     
    342342            gc.weightx = 1.0;
    343343            gc.weighty = 0.0;
    344             gc.insets = new Insets(5,0,0,0);
     344            gc.insets = new Insets(5, 0, 0, 0);
    345345            add(lblTaskTitle = new JLabel(labelHtml), gc);
    346346
    347347            gc.gridy = 1;
    348             gc.insets = new Insets(15,0,0,0);
     348            gc.insets = new Insets(15, 0, 0, 0);
    349349            add(progressBar = new JProgressBar(JProgressBar.HORIZONTAL), gc);
    350350            progressBar.setIndeterminate(true);
Note: See TracChangeset for help on using the changeset viewer.