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"

File:
1 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) {
Note: See TracChangeset for help on using the changeset viewer.