diff --git a/core/src/net/sf/openrocket/rocketcomponent/RocketComponent.java b/core/src/net/sf/openrocket/rocketcomponent/RocketComponent.java index 30cb2ceaa..8edda664b 100644 --- a/core/src/net/sf/openrocket/rocketcomponent/RocketComponent.java +++ b/core/src/net/sf/openrocket/rocketcomponent/RocketComponent.java @@ -1651,47 +1651,7 @@ public abstract class RocketComponent implements ChangeSource, Cloneable, Iterab } - /////////// Iterators ////////// - - /** - * Returns an iterator that iterates over all children and sub-children. - *

- * The iterator iterates through all children below this object, including itself if - * returnSelf is true. The order of the iteration is not specified - * (it may be specified in the future). - *

- * If an iterator iterating over only the direct children of the component is required, - * use component.getChildren().iterator(). - * - * TODO: HIGH: Remove this after merges have been done - * - * @param returnSelf boolean value specifying whether the component itself should be - * returned - * @return An iterator for the children and sub-children. - * @deprecated Use {@link #iterator(boolean)} instead - */ - @Deprecated - public final Iterator deepIterator(boolean returnSelf) { - return iterator(returnSelf); - } - - - /** - * Returns an iterator that iterates over all children and sub-children, including itself. - *

- * This method is equivalent to deepIterator(true). - * - * TODO: HIGH: Remove this after merges have been done - * - * @return An iterator for this component, its children and sub-children. - * @deprecated Use {@link #iterator()} instead - */ - @Deprecated - public final Iterator deepIterator() { - return iterator(); - } - - + /////////// Iterators ////////// /** * Returns an iterator that iterates over all children and sub-children.