Changeset 4894 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2012-02-02T19:38:41+01:00 (13 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/command
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/command/Command.java
r4461 r4894 160 160 @Override public Collection<? extends OsmPrimitive> getParticipatingPrimitives() { 161 161 return cloneMap.keySet(); 162 }163 164 /**165 * Provide a description that can be presented in a list or tree view.166 * This override will be removed when167 * <code>description()</code> is removed.168 */169 @Override public Object getDescription() {170 return ((DefaultMutableTreeNode) description()).getUserObject();171 }172 173 /**174 * @deprecated use getDescription() and getChildren() instead175 */176 @Deprecated177 public MutableTreeNode description() {178 return null;179 162 } 180 163 -
trunk/src/org/openstreetmap/josm/command/MoveCommand.java
r4126 r4894 135 135 } 136 136 137 /**138 * @Deprecated use getParticipatingPrimitives() instead139 */140 @Deprecated141 public Collection<Node> getMovedNodes() {142 return nodes;143 }144 145 137 @Override 146 138 public Collection<Node> getParticipatingPrimitives() {
Note:
See TracChangeset
for help on using the changeset viewer.