Skip to content
Snippets Groups Projects
Commit dcb0ed30 authored by Damon Kohler's avatar Damon Kohler
Browse files

Adds convenience method to GraphName.

parent 9f71d5cf
No related branches found
No related tags found
No related merge requests found
......@@ -277,6 +277,13 @@ public class GraphName {
return new GraphName(toString() + SEPARATOR + other.toString());
}
/**
* @see #join(GraphName)
*/
public GraphName join(String other) {
return join(GraphName.of(other));
}
@Override
public String toString() {
return name;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment