Description
The following code works in 1.2.22, but throws a NullPointerException in 1.3.0 and later versions:
OMFactory factory = OMAbstractFactory.getOMFactory(); OMElement element = factory.createOMElement("root", null); OMText text = factory.createOMText(element, Base64.getEncoder().encodeToString("foobar".getBytes(StandardCharsets.UTF_8))); text.setOptimize(true); OMOutputFormat format = new OMOutputFormat(); format.setDoOptimize(true); element.serialize(System.out, format);