Ignore:
Timestamp:
2016-06-15T10:30:37+02:00 (8 years ago)
Author:
Don-vip
Message:

Checkstyle 6.19: enable SingleSpaceSeparator and fix violations

Location:
trunk/src/org/openstreetmap/josm/gui/download
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/download/BookmarkSelection.java

    r10179 r10378  
    8181        JPanel pnl = new JPanel(new GridBagLayout());
    8282
    83         GridBagConstraints  gc = new GridBagConstraints();
     83        GridBagConstraints gc = new GridBagConstraints();
    8484        gc.anchor = GridBagConstraints.NORTHWEST;
    8585        gc.insets = new Insets(5, 5, 5, 5);
  • trunk/src/org/openstreetmap/josm/gui/download/BoundingBoxSelection.java

    r9606 r10378  
    307307
    308308        protected void refreshBounds() {
    309             Bounds  b = build();
     309            Bounds b = build();
    310310            parent.boundingBoxChanged(b, BoundingBoxSelection.this);
    311311        }
  • trunk/src/org/openstreetmap/josm/gui/download/DownloadDialog.java

    r10212 r10378  
    5454 * Dialog displayed to download OSM and/or GPS data from OSM server.
    5555 */
    56 public class DownloadDialog extends JDialog  {
     56public class DownloadDialog extends JDialog {
    5757    /** the unique instance of the download dialog */
    5858    private static DownloadDialog instance;
     
    169169        pnl.add(cbStartup, GBC.std().anchor(GBC.WEST).insets(15, 5, 5, 5));
    170170
    171         pnl.add(sizeCheck,  GBC.eol().anchor(GBC.EAST).insets(5, 5, 5, 2));
     171        pnl.add(sizeCheck, GBC.eol().anchor(GBC.EAST).insets(5, 5, 5, 2));
    172172
    173173        if (!ExpertToggleAction.isExpert()) {
    174             JLabel infoLabel  = new JLabel(
     174            JLabel infoLabel = new JLabel(
    175175                    tr("Use left click&drag to select area, arrows or right mouse button to scroll map, wheel or +/- to zoom."));
    176176            pnl.add(infoLabel, GBC.eol().anchor(GBC.SOUTH).insets(0, 0, 0, 0));
  • trunk/src/org/openstreetmap/josm/gui/download/DownloadObjectDialog.java

    r8061 r10378  
    2424public class DownloadObjectDialog extends OsmIdSelectionDialog {
    2525
     26    // CHECKSTYLE.OFF: SingleSpaceSeparator
    2627    protected final JCheckBox referrers = new JCheckBox(tr("Download referrers (parent relations)"));
    2728    protected final JCheckBox fullRel   = new JCheckBox(tr("Download relation members"));
    2829    protected final JCheckBox newLayer  = new JCheckBox(tr("Separate Layer"));
     30    // CHECKSTYLE.ON: SingleSpaceSeparator
    2931
    3032    /**
  • trunk/src/org/openstreetmap/josm/gui/download/DownloadSelection.java

    r9243 r10378  
    44import org.openstreetmap.josm.data.Bounds;
    55
    6 public interface DownloadSelection  {
     6public interface DownloadSelection {
    77
    88    /**
Note: See TracChangeset for help on using the changeset viewer.