Changeset 2845 in josm for trunk/src/org/openstreetmap/josm/data/conflict
- Timestamp:
- 2010-01-13T19:55:07+01:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/conflict/ConflictCollection.java
r2655 r2845 13 13 14 14 import org.openstreetmap.josm.data.osm.OsmPrimitive; 15 import org.openstreetmap.josm.tools.CheckParameterUtil; 15 16 16 17 /** … … 87 88 * 88 89 */ 89 public void add(Conflict<?> conflict) throws IllegalStateException, IllegalArgumentException { 90 if (conflict == null) 91 throw new IllegalArgumentException(tr("Parameter ''{0}'' must not be null.", "conflict")); 90 public void add(Conflict<?> conflict) throws IllegalStateException { 91 CheckParameterUtil.ensureParameterNotNull(conflict, "conflict"); 92 92 addConflict(conflict); 93 93 fireConflictAdded();
Note:
See TracChangeset
for help on using the changeset viewer.