Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fbdd5771 authored by Jesse Wilson's avatar Jesse Wilson
Browse files

Fix the broken compile of a currently-not-being-compiled AWT class.

I intend to remove AWT entirely, but doing so is a large project and
this stopgap will remove several errors from Eclipse projects.
parent 422cfc9c
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -27,6 +27,8 @@ import org.w3c.dom.Element;
import org.w3c.dom.NamedNodeMap;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.w3c.dom.TypeInfo;
import org.w3c.dom.UserDataHandler;

//???AWT
//import org.w3c.dom.TypeInfo;
@@ -924,6 +926,14 @@ public class IIOMetadataNode implements Element, NodeList {
        return userObject;
    }

    public TypeInfo getSchemaTypeInfo() {
        throw new UnsupportedOperationException();
    }

    public Object setUserData(String key, Object data, UserDataHandler handler) {
        throw new UnsupportedOperationException();
    }

    /**
     * Sets the user object associated with this node.
     *