Details
-
Type: New Feature
-
Status: Closed
-
Resolution: Won't Fix
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: None
-
Labels:None
Description
If a converter does something like this:
public void marshal(...) {
writer.startNode("a");
writer.startNode("b");
writer.endNode();
}
... the Marshaller/Unmarshaller should throw an exception saying which converter produced the unbalanced elements.
I fixed this, then removed it. It added unecessary overhead, deemed not worth it for the value it added.