Changeset 32697 in osm for applications
- Timestamp:
- 2016-07-22T09:48:26+02:00 (8 years ago)
- Location:
- applications/editors/josm/plugins/proj4j/src/org/osgeo/proj4j
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/proj4j/src/org/osgeo/proj4j/proj/SimpleConicProjection.java
r29325 r32697 128 128 sig = 0.5 * (p2 + p1); 129 129 err = (Math.abs(del) < EPS || Math.abs(sig) < EPS) ? -42 : 0; 130 del = del;131 130 132 131 if (err != 0) -
applications/editors/josm/plugins/proj4j/src/org/osgeo/proj4j/units/AngleFormat.java
r29325 r32697 145 145 * @see Angle#parse(String) 146 146 */ 147 @Deprecated 147 148 public Number parse(String text, ParsePosition parsePosition) { 148 149 double d = 0, m = 0, s = 0; -
applications/editors/josm/plugins/proj4j/src/org/osgeo/proj4j/units/Unit.java
r26409 r32697 87 87 } 88 88 89 @Override 89 90 public boolean equals(Object o) { 90 91 if (o instanceof Unit) {
Note:
See TracChangeset
for help on using the changeset viewer.