| In OgmLoader, we have the following code:
if ( resultset == null ) {
return null;
}
while we use resultset a few lines above:
Tuple tuple = resultset.unwrap( TupleAsMapResultSet.class ).getTuple();
This is wrong: we should either remove the code or move it a few lines above. |