*** 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 () {
|
||||
// if prototype is null, it's a vanilla HopObject.
|
||||
if (prototype == null)
|
||||
return "hopobject";
|
||||
return prototype;
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue