Another @Computed related patch.

This commit is contained in:
Michael Bayne
2006-10-20 18:52:49 +00:00
parent 1845859344
commit d5d4eaf6c3
@@ -360,6 +360,9 @@ public class DepotMarshaller<T>
try { try {
T po = (T)_pclass.newInstance(); T po = (T)_pclass.newInstance();
for (FieldMarshaller fm : _fields.values()) { for (FieldMarshaller fm : _fields.values()) {
if (fm.getComputed() != null && !fm.getComputed().required()) {
continue;
}
fm.getValue(rs, po); fm.getValue(rs, po);
} }
return po; return po;