Changeset 6226 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2013-09-09T01:12:38+02:00 (11 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/data
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/coor/Coordinate.java
r6203 r6226 116 116 public int hashCode() { 117 117 final int prime = 31; 118 int result = super.hashCode();118 int result = 1; 119 119 long temp; 120 120 temp = java.lang.Double.doubleToLongBits(x); -
trunk/src/org/openstreetmap/josm/data/osm/Storage.java
r6137 r6226 150 150 * @param capacity 151 151 * @param safeIterator If set to false, you must not modify the Storage 152 * while iterating over it. If set to true, you can sa vely152 * while iterating over it. If set to true, you can safely 153 153 * modify, but the read-only iteration will happen on a copy 154 154 * of the unmodified Storage.
Note:
See TracChangeset
for help on using the changeset viewer.