Skip to content
Snippets Groups Projects
Commit be2d70ae authored by gakin's avatar gakin
Browse files

SSDM-5147 : SkinnyNode addEdge fix

SVN: 38275
parent 1956dd5e
No related branches found
No related tags found
No related merge requests found
...@@ -84,13 +84,15 @@ public class SkinnyNode implements INode ...@@ -84,13 +84,15 @@ public class SkinnyNode implements INode
@Override @Override
public Map<String, String> getPropertiesOrNull() public Map<String, String> getPropertiesOrNull()
{ {
throw new UnsupportedOperationException(); return null;
//throw new UnsupportedOperationException();
} }
@Override @Override
public void addConnection(EdgeNodePair enPair) public void addConnection(EdgeNodePair enPair)
{ {
throw new UnsupportedOperationException(); //do nothing
//throw new UnsupportedOperationException();
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment