Open GoogleCodeExporter opened 9 years ago
A quick update, as I look further into this.
The information above is a false solution -- that is, it generated valid XML and
stopped the 1085 problem, but it wasn't the correct way to solve the problem.
Looking further, it is the ICON_ROOT node on line 1224 that is not being
closed, not
the error nodes (which are successfully closed by passing 'true' to the 'close'
parameter).
The actual problem turned out to be on line 1341, which catches only
error:TypeError.
A different type of error is occurring in my case, which is not handled by this
try/catch. The function quits and the unclosed ICON_ROOT node remains unclosed.
Adding catch(error:Error) to this try/catch block solves the problem.
(successfully
this time, it appears!)
Sorry for all of the bad information above.
Original comment by birnamde...@gmail.com
on 10 Feb 2010 at 7:53
Attachments:
Also note, this might help with Issue 5 as well.
Original comment by birnamde...@gmail.com
on 10 Feb 2010 at 7:53
New version!
Original comment by ferdikoomenmobile@gmail.com
on 5 Apr 2011 at 1:01
Original issue reported on code.google.com by
birnamde...@gmail.com
on 10 Feb 2010 at 6:26