Ignore:
Timestamp:
2018-09-15T13:50:24+02:00 (8 years ago)
Author:
donvip
Message:

fix UnnecessaryParentheses warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/seachart/src/s57/S57map.java

    r32909 r34652  
    908908                            first = false;
    909909                        } else {
    910                             sarc += (Math.acos(Math.cos(lon - llon) * Math.cos(lat - llat)));
     910                            sarc += Math.acos(Math.cos(lon - llon) * Math.cos(lat - llat));
    911911                        }
    912912                        llat = lat;
     
    931931                            first = false;
    932932                        } else {
    933                             sarc = (Math.acos(Math.cos(lon - llon) * Math.cos(lat - llat)));
     933                            sarc = Math.acos(Math.cos(lon - llon) * Math.cos(lat - llat));
    934934                            if (sarc > harc)
    935935                                break;
Note: See TracChangeset for help on using the changeset viewer.