Fix missing location in error reports
[yangtools.git] / yang / yang-data-codec-xml / src / main / java / org / opendaylight / yangtools / yang / data / codec / xml / ValueWriter.java
index 2efa92f84d4127efcd5697c1123389927d397228..592f3a370f145895ca905f01e91d1fccf5ae08cd 100644 (file)
@@ -20,9 +20,6 @@ import javax.xml.stream.XMLStreamWriter;
  * See XMLStreamWriter for description of methods.
  */
 abstract class ValueWriter {
-    // Additionally ignores null/empty
-    abstract void writeCharacters(String text) throws XMLStreamException;
-
     abstract void writeNamespace(String prefix, String namespaceURI) throws XMLStreamException;
 
     abstract void writeAttribute(String localName, String value) throws XMLStreamException;