This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
[gui] Add missing interface declaration to IIOMetadataNode
- From: Jerry Quinn <jlquinn at optonline dot net>
- To: java-patches at gcc dot gnu dot org
- Date: Tue, 28 Dec 2004 14:31:27 -0500
- Subject: [gui] Add missing interface declaration to IIOMetadataNode
Missed this bit.
2004-12-28 Jerry Quinn <jlquinn@optonline.net>
* javax/imageio/metadata/IIOMetadataNode.java: Add Node to
implemented interface list.
Index: IIOMetadataNode.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/javax/imageio/metadata/IIOMetadataNode.java,v
retrieving revision 1.1.12.2
retrieving revision 1.1.12.3
diff -u -r1.1.12.2 -r1.1.12.3
--- IIOMetadataNode.java 28 Dec 2004 18:55:49 -0000 1.1.12.2
+++ IIOMetadataNode.java 28 Dec 2004 19:27:43 -0000 1.1.12.3
@@ -51,7 +51,7 @@
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
-public class IIOMetadataNode implements Element, NodeList
+public class IIOMetadataNode implements Element, Node, NodeList
{
private String name;
private HashMap attrs = new HashMap();