https://issues.apache.org/bugzilla/show_bug.cgi?id=54061
Priority: P2
Bug ID: 54061
Assignee: [email protected]
Summary: NullPointer Exception in org.apache.fop.fo.FObj
Severity: normal
Classification: Unclassified
Reporter: [email protected]
Hardware: PC
Status: NEW
Version: 1.1
Component: general
Product: Fop
In the method public void removeChild(FONode child) {... i get a
NullPointerException at row FObj:250;
I have seen the code:
...
if (child == lastChild) {
if (child.siblings != null) { // row 249
lastChild = siblings[0]; // row 250
} else {
lastChild = null;
}
}
...
the row 250 should be lastChild = child.siblings[0] instead of siblings[0] ???
--
You are receiving this mail because:
You are the assignee for the bug.