diff --git a/core/src/main/java/edu/umd/cs/piccolo/PNode.java b/core/src/main/java/edu/umd/cs/piccolo/PNode.java index 7eb8794..87395d7 100644 --- a/core/src/main/java/edu/umd/cs/piccolo/PNode.java +++ b/core/src/main/java/edu/umd/cs/piccolo/PNode.java @@ -3636,26 +3636,6 @@ return result; } - private static final class ClientPropertyKeyIterator implements Iterator { - private final Enumeration enumeration; - - private ClientPropertyKeyIterator(final Enumeration enumeration) { - this.enumeration = enumeration; - } - - public boolean hasNext() { - return enumeration.hasMoreElements(); - } - - public Object next() { - return enumeration.nextElement(); - } - - public void remove() { - throw new UnsupportedOperationException(); - } - } - /** * PSceneGraphDelegate is an interface to receive low level node * events. It together with PNode.SCENE_GRAPH_DELEGATE gives Piccolo2d users