* Fix regression for bug 484 introduced in revision 1.177:

use extension id instead of prototype name for _prototype property in constructor.
This commit is contained in:
hns 2007-05-25 09:46:02 +00:00
parent 297b45439f
commit 40d0f45ba2

View file

@ -152,7 +152,7 @@ public final class Node implements INode, Serializable {
if (prototype != null && dbmap != null) {
String protoProperty = dbmap.columnNameToProperty(dbmap.getPrototypeField());
if (protoProperty != null) {
setString(protoProperty, prototype);
setString(protoProperty, dbmap.getExtensionId());
}
}
}