Bob,

when updating Jmol in Bioclipse, I found that current SVN gave a 
NullPointerException on line 572 of org.jmol.viewer.Frame.

Not sure what is causing this; I'm using the CDK IO here, but the Adapter 
interface does not seem to have a method for modelSetAuxiliaryInfo...

Did I overlook something?

Anyway, I applied this patch, and then it worked:

--- src/org/jmol/viewer/Frame.java      (revision 6012)
+++ src/org/jmol/viewer/Frame.java      (working copy)
@@ -569,6 +569,8 @@
     if (group3Lists == null)
       return;
     Hashtable info = getModelSetAuxiliaryInfo();
+    if (info == null)
+      return;
     info.put("group3Lists", group3Lists);
     info.put("group3Counts", group3Counts);
   }

Shall I commit that?

Egon

-- 
CUBIC
blog: http://chem-bla-ics.blogspot.com/

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Jmol-developers mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jmol-developers

Reply via email to