- Timestamp:
- 2021-08-09T21:03:05+02:00 (3 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/mapmode/ParallelWayAction.java
r17896 r18129 582 582 private static Map<Modifier, Boolean> createFromString(String string) { 583 583 Map<Modifier, Boolean> ret = new EnumMap<>(Modifier.class); 584 for (char c : string.toCharArray()) { 584 for (int i = 0; i < string.length(); i++) { 585 char c = string.charAt(i); 585 586 if (c == '?') { 586 587 continue; -
trunk/src/org/openstreetmap/josm/gui/tagging/presets/TaggingPresetListener.java
r10590 r18129 4 4 /** 5 5 * Notification of tagging presets events. 6 * @see TaggingPresets#addListener(TaggingPresetListener) 6 7 * @since 7100 7 * @see TaggingPresets#addListener(TaggingPresetListener)8 8 */ 9 9 @FunctionalInterface -
trunk/src/org/openstreetmap/josm/io/MultiFetchServerObjectReader.java
r17654 r18129 373 373 * found on the server (the server response code was 404) 374 374 * 375 * @param progressMonitor progress monitor 375 376 * @return the parsed data 376 * @param progressMonitor progress monitor377 377 * @throws OsmTransferException if an error occurs while communicating with the API server 378 378 * @see #getMissingPrimitives() -
trunk/src/org/openstreetmap/josm/tools/OsmUrlToBounds.java
r16887 r18129 174 174 int zoomOffset = 0; 175 175 176 for (final char ch : shortLink.toCharArray()) { 176 for (int j = 0; j < shortLink.length(); j++) { 177 char ch = shortLink.charAt(j); 177 178 if (array.containsKey(ch)) { 178 179 int val = array.get(ch);
Note:
See TracChangeset
for help on using the changeset viewer.