Changeset 15586 in josm for trunk/src/org/openstreetmap/josm/data
- Timestamp:
- 2019-12-13T00:48:33+01:00 (5 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/data
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/UndoRedoHandler.java
r14848 r15586 280 280 return !redoCommands.isEmpty(); 281 281 } 282 283 282 284 283 /** -
trunk/src/org/openstreetmap/josm/data/imagery/GetCapabilitiesParseHelper.java
r15410 r15586 145 145 } 146 146 147 148 147 /** 149 148 * Moves reader to first occurrence of the structure equivalent of Xpath tags[0]/tags[1]../tags[n]. If fails to find -
trunk/src/org/openstreetmap/josm/data/imagery/WMTSTileSource.java
r15415 r15586 446 446 return output.toString(); 447 447 } 448 449 448 450 449 /** … … 1077 1076 } 1078 1077 1079 1080 1078 /** 1081 1079 * @return set of projection codes that this TileSource supports -
trunk/src/org/openstreetmap/josm/data/osm/DataSelectionListener.java
r12970 r15586 113 113 } 114 114 } 115 116 115 117 116 /** -
trunk/src/org/openstreetmap/josm/data/osm/OsmPrimitive.java
r15535 r15586 312 312 } 313 313 314 315 314 /* ------- 316 315 /* FLAGS -
trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/MapRendererFactory.java
r13207 r15586 230 230 } 231 231 232 233 232 /** 234 233 * <p>Unregisters a map renderer class.</p> -
trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/StyledMapRenderer.java
r15292 r15586 791 791 } 792 792 793 794 793 /** 795 794 * Draw the icon for a given area. Normally, the icon is drawn around the center of the area. -
trunk/src/org/openstreetmap/josm/data/validation/routines/DomainValidator.java
r15562 r15586 290 290 291 291 // WARNING: this array MUST be sorted, otherwise it cannot be searched reliably using binary search 292 private static final String[] INFRASTRUCTURE_TLDS = new String[]{292 private static final String[] INFRASTRUCTURE_TLDS = { 293 293 "arpa", // internet infrastructure 294 294 }; 295 295 296 296 // WARNING: this array MUST be sorted, otherwise it cannot be searched reliably using binary search 297 private static final String[] GENERIC_TLDS = new String[]{297 private static final String[] GENERIC_TLDS = { 298 298 // Taken from Version 2019120700, Last Updated Sat Dec 7 07:07:01 2019 UTC 299 299 "aaa", // aaa American Automobile Association, Inc. … … 1524 1524 1525 1525 // WARNING: this array MUST be sorted, otherwise it cannot be searched reliably using binary search 1526 private static final String[] COUNTRY_CODE_TLDS = new String[]{1526 private static final String[] COUNTRY_CODE_TLDS = { 1527 1527 "ac", // Ascension Island 1528 1528 "ad", // Andorra … … 1822 1822 1823 1823 // WARNING: this array MUST be sorted, otherwise it cannot be searched reliably using binary search 1824 private static final String[] LOCAL_TLDS = new String[]{1824 private static final String[] LOCAL_TLDS = { 1825 1825 "localdomain", // Also widely used as localhost.localdomain 1826 1826 "localhost", // RFC2606 defined -
trunk/src/org/openstreetmap/josm/data/validation/routines/RegexValidator.java
r11747 r15586 180 180 } 181 181 182 183 182 /** 184 183 * Validate a value against the set of regular expressions -
trunk/src/org/openstreetmap/josm/data/validation/tests/InternetTags.java
r14803 r15586 36 36 * List of keys subject to URL validation. 37 37 */ 38 private static final String[] URL_KEYS = new String[]{38 private static final String[] URL_KEYS = { 39 39 "url", "source:url", 40 40 "website", "contact:website", "heritage:website", "source:website" … … 44 44 * List of keys subject to email validation. 45 45 */ 46 private static final String[] EMAIL_KEYS = new String[]{46 private static final String[] EMAIL_KEYS = { 47 47 "email", "contact:email" 48 48 }; -
trunk/src/org/openstreetmap/josm/data/validation/tests/MapCSSTagChecker.java
r15463 r15586 95 95 final Set<OsmPrimitive> tested = new HashSet<>(); 96 96 97 98 97 /** 99 98 * A grouped MapCSSRule with multiple selectors for a single declaration. -
trunk/src/org/openstreetmap/josm/data/validation/tests/MultipolygonTest.java
r15510 r15586 519 519 } 520 520 521 522 521 /** 523 522 * Determine multipolygon ways which are intersecting (crossing without a common node) or sharing one or more way segments. … … 633 632 } 634 633 635 636 634 /** 637 635 * Find ways which are crossing without sharing a node.
Note:
See TracChangeset
for help on using the changeset viewer.