Ignore white space for now in V5

This commit is contained in:
Willem Cazander 2024-12-27 19:14:17 +01:00
parent 05f977e3ca
commit f8eb41656a

View file

@ -84,12 +84,6 @@ public class ScopicManifest5ContentParser extends ContentWriterAdapter {
attrValue.append(text);
}
@Override
public void ignorableWhitespace(char[] ch, int start, int length) throws SAXException {
String space = new String(ch, start, length);
System.out.println("white space: \"" + space + "\"");
}
@Override
public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException {
if (ScopicManifest5FrameTag.ATTRIBUTE.name().equals(localName)) {