Hi All,
I'm working with custom PDB Files and I'm getting StringIndexOutOufBondsException from the PDBParser.
I've seen you rencently added this line in the PDBParser (conect_helper (String line,int start,int end) method) :
if line.length() < end) return null;
It'b be nice if to check the line.length() do not exeed the start arg, should be fixed by changing it to this (tested):
if (line.length() < start || line.length() < end) return null;
Thanks for the good work!