Changeset 10338 in josm for trunk/src/org/openstreetmap/josm
- Timestamp:
- 2016-06-08T02:49:17+02:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/data/validation/routines
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/validation/routines/DomainValidator.java
r10321 r10338 58 58 * </p> 59 59 * 60 * @version $Revision: 17 25571$60 * @version $Revision: 1740822 $ 61 61 * @since Validator 1.4 62 62 */ -
trunk/src/org/openstreetmap/josm/data/validation/routines/EmailValidator.java
r10202 r10338 32 32 * </p>. 33 33 * 34 * @version $Revision: 17 23573$34 * @version $Revision: 1741724 $ 35 35 * @since Validator 1.4 36 36 */ -
trunk/src/org/openstreetmap/josm/data/validation/routines/InetAddressValidator.java
r9922 r10338 30 30 * </p> 31 31 * 32 * @version $Revision: 17 15439$32 * @version $Revision: 1741724 $ 33 33 * @since Validator 1.4 34 34 */ … … 166 166 return false; 167 167 } 168 if (index > octets.length - 1 || index > 6) { // TODO magic number (sort of)168 if (index > octets.length - 1 || index > 6) { // CHECKSTYLE IGNORE MagicNumber 169 169 // IPV4 occupies last two octets 170 170 return false; -
trunk/src/org/openstreetmap/josm/data/validation/routines/RegexValidator.java
r10242 r10338 64 64 * </p> 65 65 * 66 * @version $Revision: 17 13331$66 * @version $Revision: 1741724 $ 67 67 * @since Validator 1.4 68 68 */ -
trunk/src/org/openstreetmap/josm/data/validation/routines/UrlValidator.java
r9991 r10338 68 68 * </pre> 69 69 * 70 * @version $Revision: 17 15435$70 * @version $Revision: 1741724 $ 71 71 * @see 72 72 * <a href="http://www.ietf.org/rfc/rfc2396.txt">
Note:
See TracChangeset
for help on using the changeset viewer.