Re: NullPointer in BridgeContext

2003-07-09 Thread Brian Modra
Thanks, and I'll give you a test program one of these days which exposes that ConcurrentModificationException which I poseted about earlier, and is fixed by using my HashMap rather than Sun's We use Linux and Windows NT, and in both cases J2SDK 1.4.1. Develop on Linux, test on both. On Thu, 2003-

Re: NullPointer in BridgeContext

2003-07-09 Thread Thomas DeWeese
Brian Modra wrote: In the middle of BridgeContext.dispose() it sometimes gets a NullPointerException due to the document variable being null. I put: if (document == null) return; just before EventTarget evtTarget = (EventTarget)document; on line 888 of my copy of batik 1.5b5 org.apache.batik.bri

NullPointer in BridgeContext

2003-07-09 Thread Brian Modra
In the middle of BridgeContext.dispose() it sometimes gets a NullPointerException due to the document variable being null. I put: if (document == null) return; just before EventTarget evtTarget = (EventTarget)document; on line 888 of my copy of batik 1.5b5 org.apache.batik.bridge.BridgeContext