We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc46936 commit 20e637aCopy full SHA for 20e637a
dddplus-visualization/src/main/java/io/github/dddplus/ast/report/ClassHierarchyReport.java
@@ -81,12 +81,14 @@ private String displayGenericTypes() {
81
}
82
83
public String dotLabel() {
84
+ String javadoc = fromJavadoc.replaceAll("@", "")
85
+ .replaceAll("\"", "");
86
String displayGenericTypes = displayGenericTypes();
87
if (displayGenericTypes.isEmpty()) {
- return fromJavadoc;
88
+ return javadoc;
89
90
- return fromJavadoc + " <" + displayGenericTypes + ">";
91
+ return javadoc + " <" + displayGenericTypes + ">";
92
93
94
@Override
0 commit comments