From 4aaef1761d12a027a64f99d636a9f248c13ef1d7 Mon Sep 17 00:00:00 2001 From: Andreas Beeker Date: Tue, 13 Dec 2016 00:34:30 +0000 Subject: [PATCH] eclipse warnings - raw list access git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1773909 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/poi/poifs/property/Parent.java | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/java/org/apache/poi/poifs/property/Parent.java b/src/java/org/apache/poi/poifs/property/Parent.java index 79c286c44..24e2bb266 100644 --- a/src/java/org/apache/poi/poifs/property/Parent.java +++ b/src/java/org/apache/poi/poifs/property/Parent.java @@ -23,12 +23,8 @@ import java.io.IOException; /** * Behavior for parent (directory) properties - * - * @author Marc Johnson27591@hotmail.com */ -public interface Parent - extends Child -{ +public interface Parent extends Child, Iterable { /** * Get an iterator over the children of this Parent; all elements @@ -37,7 +33,7 @@ public interface Parent * @return Iterator of children; may refer to an empty collection */ - public Iterator getChildren(); + public Iterator getChildren(); /** * Add a new child to the collection of children