JAL-2135 NPE bugfix when parsing a structure file with Jmol and id & inFile is null
authortcofoegbu <tcnofoegbu@dundee.ac.uk>
Tue, 12 Jul 2016 10:03:50 +0000 (11:03 +0100)
committertcofoegbu <tcnofoegbu@dundee.ac.uk>
Tue, 12 Jul 2016 10:03:50 +0000 (11:03 +0100)
src/jalview/ext/jmol/JmolParser.java

index c514503..5effd2e 100644 (file)
@@ -172,7 +172,7 @@ public class JmolParser extends StructureFile implements JmolStatusListener
 
       if (getId() == null)
       {
-        setId(inFile.getName());
+        setId((inFile != null) ? inFile.getName() : safeName(getDataName()));
       }
       for (PDBChain chain : getChains())
       {