Skip to content
Snippets Groups Projects
Commit 3114415c authored by Munish Mehta's avatar Munish Mehta
Browse files

Add a small enhancement to generate a key string for a node port tuple

parent 5ef00e5d
No related branches found
No related tags found
No related merge requests found
......@@ -84,4 +84,8 @@ public class NodePortTuple {
return false;
return true;
}
public String toKeyString() {
return (HexString.toHexString(nodeId)+ "|" + portId);
}
}
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