Changeset 10338 in josm
- Timestamp:
- 2016-06-08T02:49:17+02:00 (8 years ago)
- Location:
- trunk
- Files:
-
- 10 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"> -
trunk/test/unit/org/openstreetmap/josm/data/validation/routines/DomainValidatorTest.java
r10133 r10338 36 36 * Tests for the DomainValidator. 37 37 * 38 * @version $Revision: 17 23861$38 * @version $Revision: 1741724 $ 39 39 */ 40 40 public class DomainValidatorTest { -
trunk/test/unit/org/openstreetmap/josm/data/validation/routines/EmailValidatorTest.java
r10222 r10338 29 29 * 30 30 * 31 * @version $Revision: 17 23573$31 * @version $Revision: 1741724 $ 32 32 */ 33 33 public class EmailValidatorTest { -
trunk/test/unit/org/openstreetmap/josm/data/validation/routines/InetAddressValidatorTest.java
r10133 r10338 28 28 * Test cases for InetAddressValidator. 29 29 * 30 * @version $Revision: 1 649163$30 * @version $Revision: 1741724 $ 31 31 */ 32 32 public class InetAddressValidatorTest { -
trunk/test/unit/org/openstreetmap/josm/data/validation/routines/RegexValidatorTest.java
r10133 r10338 32 32 * Test Case for RegexValidatorTest. 33 33 * 34 * @version $Revision: 1 649191$34 * @version $Revision: 1741724 $ 35 35 * @since Validator 1.4 36 36 */ -
trunk/test/unit/org/openstreetmap/josm/data/validation/routines/UrlValidatorTest.java
r10222 r10338 27 27 * Performs Validation Test for url validations. 28 28 * 29 * @version $Revision: 17 15076$29 * @version $Revision: 1741724 $ 30 30 */ 31 31 public class UrlValidatorTest {
Note:
See TracChangeset
for help on using the changeset viewer.