From be2d70aec4af46e334c4b946717614cba4a4ad66 Mon Sep 17 00:00:00 2001 From: gakin <gakin> Date: Wed, 7 Jun 2017 06:56:37 +0000 Subject: [PATCH] SSDM-5147 : SkinnyNode addEdge fix SVN: 38275 --- .../dss/plugins/sync/common/entitygraph/SkinnyNode.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/datastore_server/source/java/ch/ethz/sis/openbis/generic/server/dss/plugins/sync/common/entitygraph/SkinnyNode.java b/datastore_server/source/java/ch/ethz/sis/openbis/generic/server/dss/plugins/sync/common/entitygraph/SkinnyNode.java index 278c2462c10..9ee7bd93086 100644 --- a/datastore_server/source/java/ch/ethz/sis/openbis/generic/server/dss/plugins/sync/common/entitygraph/SkinnyNode.java +++ b/datastore_server/source/java/ch/ethz/sis/openbis/generic/server/dss/plugins/sync/common/entitygraph/SkinnyNode.java @@ -84,13 +84,15 @@ public class SkinnyNode implements INode @Override public Map<String, String> getPropertiesOrNull() { - throw new UnsupportedOperationException(); + return null; + //throw new UnsupportedOperationException(); } @Override public void addConnection(EdgeNodePair enPair) { - throw new UnsupportedOperationException(); + //do nothing + //throw new UnsupportedOperationException(); } } -- GitLab