-
Bug
-
Resolution: Done
-
Optional
-
None
-
None
When debugging the following method a NPE will throw if you try to evaluate the "hdr" expression.
protected static Header readHeader(DataInput in) throws IOException, ClassNotFoundException { short magic_number=in.readShort(); Header hdr=ClassConfigurator.create(magic_number); hdr.readFrom(in); return hdr; }