Enforce checkstyle on yang-data-codec-xml
[yangtools.git] / yang / yang-data-codec-xml / src / main / java / org / opendaylight / yangtools / yang / data / codec / xml / XmlCodec.java
index bebb5ca979e685601129781657da8490d740bcdf..32cd8d92fdb7027ac1109865e49dee2532964688 100644 (file)
@@ -14,11 +14,6 @@ import javax.xml.stream.XMLStreamWriter;
 import org.opendaylight.yangtools.yang.data.util.codec.TypeAwareCodec;
 
 interface XmlCodec<T> extends TypeAwareCodec<T, NamespaceContext, XMLStreamWriter> {
-    /**
-     * {@inheritDoc}
-     *
-     * @throws XMLStreamException from {@link XMLStreamWriter}
-     */
     @Override
     void writeValue(XMLStreamWriter ctx, T value) throws XMLStreamException;
 }