You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
XBProjectorprojector = newXBProjector();
CloseableMap<String> xmlMap = projector.io().file("path_to_existing_xml_file").bindAsMapOf(String.class);
//Called later onxmlMap.remove(key); //Throws NPE in DuplexExpression.deleteAllMatchingChildren, as parentNode is null (?)//Attempt 2xmlMap.entrySet().removeIf(entry -> entry.getValue() == null || Objects.equals(entry.getValue(), "")); //Appears to do nothing, I'm guessing it swallows the same NPE
Any ideas?
The text was updated successfully, but these errors were encountered:
Code looks like this:
Any ideas?
The text was updated successfully, but these errors were encountered: