Skip to content

Commit 26e2e68

Browse files
committed
small fixes to LABKEY.Experiment APIs
SVN r65287 |2020-03-28 22:35:08 +0000
1 parent 4f6bfc7 commit 26e2e68

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

java/src/org/labkey/remoteapi/experiment/LineageNode.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
public class LineageNode extends ResponseObject
2727
{
2828
private final String _lsid;
29-
private final Integer _rowId;
29+
private final Integer _id;
3030
private final String _name;
3131
private final String _url;
3232
private final String _type;
@@ -40,7 +40,7 @@ public LineageNode(String lsid, Map<String, Object> map)
4040
{
4141
super(map);
4242
_lsid = lsid;
43-
_rowId = ((Long)map.get("rowId")).intValue();
43+
_id = ((Long)map.get("id")).intValue();
4444
_name = (String)map.get("name");
4545
_type = (String)map.get("type");
4646
_cpasType = (String)map.get("cpasType");
@@ -70,9 +70,9 @@ public String getLsid()
7070
return _lsid;
7171
}
7272

73-
public Integer getRowId()
73+
public Integer getId()
7474
{
75-
return _rowId;
75+
return _id;
7676
}
7777

7878
public String getName()
@@ -107,7 +107,7 @@ public List<Edge> getChildren()
107107

108108
void dump(int indent, StringBuilder sb, Set<String> seen)
109109
{
110-
indent(indent, sb).append("> ").append(getName()).append(" (").append(getRowId()).append(")");
110+
indent(indent, sb).append("> ").append(getName()).append(" (").append(getId()).append(")");
111111
if (seen.contains(getLsid()))
112112
{
113113
sb.append(" **\n");

0 commit comments

Comments
 (0)