- Timestamp:
- 2022-07-04T06:42:13+02:00 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/validation/tests/RelationChecker.java
r18232 r18506 53 53 /** Empty role found when expecting one of ''{0}'' */ 54 54 public static final int ROLE_EMPTY = 1702; 55 /** Role of relation member does not match template expression ''{0}'' in preset {1} */56 public static final int WRONG_ROLE = 1708;57 55 /** Number of ''{0}'' roles too high ({1}) */ 58 56 public static final int HIGH_COUNT = 1704; … … 63 61 /** Relation type is unknown */ 64 62 public static final int RELATION_UNKNOWN = 1707; 65 /** R elation is empty*/66 public static final int RELATION_EMPTY= 1708;63 /** Role of relation member does not match template expression ''{0}'' in preset {1} */ 64 public static final int WRONG_ROLE = 1708; 67 65 /** Type ''{0}'' of relation member with role ''{1}'' does not match accepted types ''{2}'' in preset {3} */ 68 66 public static final int WRONG_TYPE = 1709; 69 67 /** Relations build circular dependencies */ 70 68 public static final int RELATION_LOOP = 1710; 69 /** Relation is empty */ 70 public static final int RELATION_EMPTY = 1711; // was 1708 up to r18505 71 71 // CHECKSTYLE.ON: SingleSpaceSeparator 72 72
Note:
See TracChangeset
for help on using the changeset viewer.