Changeset 13173 in josm for trunk/src/org/openstreetmap/josm/data/tagging
- Timestamp:
- 2017-11-28T00:56:29+01:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/tagging/ac/AutoCompletionItem.java
r13121 r13173 1 1 // License: GPL. For details, see LICENSE file. 2 2 package org.openstreetmap.josm.data.tagging.ac; 3 4 import org.openstreetmap.josm.tools.CheckParameterUtil;5 3 6 4 /** … … 75 73 } 76 74 77 /**78 * sets the value79 * @param value the value; must not be null80 * @throws IllegalArgumentException if value if null81 * @deprecated value is now final, set it when constructing the object82 */83 @Deprecated84 public void setValue(String value) {85 CheckParameterUtil.ensureParameterNotNull(value, "value");86 throw new UnsupportedOperationException("setValue() is no longer supported");87 }88 89 75 @Override 90 76 public String toString() {
Note:
See TracChangeset
for help on using the changeset viewer.