Changeset 2915 in josm for trunk/src/org/openstreetmap/josm/io
- Timestamp:
- 2010-01-31T18:15:15+01:00 (15 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/io
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/Capabilities.java
r2875 r2915 80 80 * @return the max number of objects in a changeset 81 81 */ 82 public int getMaxChangsetSize() { 82 public int getMaxChangesetSize() { 83 83 String v = get("changesets", "maximum_elements"); 84 84 if (v == null) return -1; -
trunk/src/org/openstreetmap/josm/io/MultiFetchServerObjectReader.java
r2875 r2915 156 156 157 157 /** 158 * appends a {@see Way}s id and the list of ids of nodes the way refers to t o the list of ids which will be fetched from the server.158 * appends a {@see Way}s id and the list of ids of nodes the way refers to the list of ids which will be fetched from the server. 159 159 * 160 160 * @param way the way (ignored, if null) -
trunk/src/org/openstreetmap/josm/io/OsmServerChangesetReader.java
r2852 r2915 164 164 * Downloads the content of a changeset 165 165 * 166 * @param id the changset id. >0 required. 166 * @param id the changeset id. >0 required. 167 167 * @param monitor the progress monitor. {@see NullProgressMonitor#INSTANCE} assumed if null. 168 * @return the changset content 168 * @return the changeset content 169 169 * @throws IllegalArgumentException thrown if id <= 0 170 170 * @throws OsmTransferException thrown if something went wrong
Note:
See TracChangeset
for help on using the changeset viewer.