*** empty log message ***
This commit is contained in:
parent
37d645663d
commit
4529071cf4
2 changed files with 6 additions and 6 deletions
|
@ -137,6 +137,9 @@ public class TransientNode implements INode, Serializable {
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getPrototype () {
|
public String getPrototype () {
|
||||||
|
// if prototype is null, it's a vanilla HopObject.
|
||||||
|
if (prototype == null)
|
||||||
|
return "hopobject";
|
||||||
return prototype;
|
return prototype;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -545,12 +545,9 @@ public final class Node implements INode, Serializable {
|
||||||
|
|
||||||
|
|
||||||
public String getPrototype () {
|
public String getPrototype () {
|
||||||
/* if (prototype == null && propMap != null) {
|
// if prototype is null, it's a vanilla HopObject.
|
||||||
// retrieve prototype name from properties
|
if (prototype == null)
|
||||||
Property pp = (Property) propMap.get ("prototype");
|
return "hopobject";
|
||||||
if (pp != null)
|
|
||||||
prototype = pp.getStringValue ();
|
|
||||||
} */
|
|
||||||
return prototype;
|
return prototype;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue