Ignore:
Timestamp:
2015-10-09T02:12:45+02:00 (9 years ago)
Author:
Don-vip
Message:

sonar - squid:S3052 - Fields should not be initialized to default values

File:
1 edited

Legend:

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

    r8646 r8840  
    123123    }
    124124
    125     public boolean viewportFollowing = false;
     125    public boolean viewportFollowing;
    126126
    127127    /**
     
    240240     * The play head marker: there is only one of these so it isn't in any specific layer
    241241     */
    242     public transient PlayHeadMarker playHeadMarker = null;
     242    public transient PlayHeadMarker playHeadMarker;
    243243
    244244    /**
     
    342342
    343343    // remebered geometry of the component
    344     private Dimension oldSize = null;
    345     private Point oldLoc = null;
     344    private Dimension oldSize;
     345    private Point oldLoc;
    346346
    347347    /**
     
    535535    }
    536536
    537     private boolean virtualNodesEnabled = false;
     537    private boolean virtualNodesEnabled;
    538538
    539539    public void setVirtualNodesEnabled(boolean enabled) {
Note: See TracChangeset for help on using the changeset viewer.