Ignore:
Timestamp:
2016-03-12T23:18:04+01:00 (10 years ago)
Author:
Don-vip
Message:

sonar - remove useless parentheses

File:
1 edited

Legend:

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

    r9636 r9970  
    258258        if (e >= EPSILON) {
    259259            final double con = e * sinphi;
    260             return ((1.0 - e2) * (sinphi / (1.0 - con*con) -
    261                     (0.5 / e) * Math.log((1.0 - con) / (1.0 + con))));
     260            return (1.0 - e2) * (sinphi / (1.0 - con*con) -
     261                    (0.5 / e) * Math.log((1.0 - con) / (1.0 + con)));
    262262        } else {
    263263            return sinphi + sinphi;
Note: See TracChangeset for help on using the changeset viewer.