Skip to content

Commit

Permalink
Workaround for graphviz crash bug
Browse files Browse the repository at this point in the history
  • Loading branch information
kno10 committed Oct 20, 2018
1 parent 132f389 commit 33f805e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/org/umlgraph/doclet/Shape.java
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,10 @@ else if (name.equals("activeclass"))

/** Return the shape's GraphViz landing port */
String landingPort() {
if (name.equals("class") || name.equals("activeclass"))
return ":p";
else
return "";
// if (name.equals("class") || name.equals("activeclass"))
// return ":p";
//else
return "";
}

/** Return the table border required for the shape */
Expand Down

0 comments on commit 33f805e

Please sign in to comment.