Changeset 12292 in josm


Ignore:
Timestamp:
2017-06-01T11:28:44+02:00 (7 years ago)
Author:
Don-vip
Message:

sonar - squid:CommentedOutCodeLine - Sections of code should not be "commented out"

Location:
trunk/src/org/openstreetmap/josm
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/projection/proj/PolarStereographic.java

    r12013 r12292  
    103103            throw new ProjectionConfigurationException(
    104104                    tr("Polar Stereographic: Parameter ''{0}'' must be 90 or -90.", "lat_0"));
    105         // Latitude of true scale, in radians;
     105        // Latitude of true scale, in radians
    106106        double latitudeTrueScale;
    107107        if (params.lat_ts == null) {
     
    112112        southPole = latitudeTrueScale < 0;
    113113
    114         // Computes coefficients.
     114        // Computes coefficients
    115115        double latitudeTrueScaleAbs = Math.abs(latitudeTrueScale);
    116116        if (Math.abs(latitudeTrueScaleAbs - Math.PI/2) >= EPSILON) {
  • trunk/src/org/openstreetmap/josm/gui/preferences/ToolbarPreferences.java

    r12135 r12292  
    11681168                        b.setMinimumSize(s);
    11691169                        b.setMaximumSize(s);
    1170                         //b.setSize(s);
    11711170                    } else if (s.height < s.width) {
    11721171                        s.height = s.width;
Note: See TracChangeset for help on using the changeset viewer.