*** empty log message ***

This commit is contained in:
hns 2002-11-06 10:06:05 +00:00
parent 37d645663d
commit 4529071cf4
2 changed files with 6 additions and 6 deletions

View file

@ -137,6 +137,9 @@ public class TransientNode implements INode, Serializable {
}
public String getPrototype () {
// if prototype is null, it's a vanilla HopObject.
if (prototype == null)
return "hopobject";
return prototype;
}

View file

@ -545,12 +545,9 @@ public final class Node implements INode, Serializable {
public String getPrototype () {
/* if (prototype == null && propMap != null) {
// retrieve prototype name from properties
Property pp = (Property) propMap.get ("prototype");
if (pp != null)
prototype = pp.getStringValue ();
} */
// if prototype is null, it's a vanilla HopObject.
if (prototype == null)
return "hopobject";
return prototype;
}