surpress warnings in plantuml generator (#7071)

This commit is contained in:
William Cheng
2020-07-29 19:01:26 +08:00
committed by GitHub
parent 8a3994e000
commit 720f864b64

View File

@@ -203,4 +203,16 @@ public class PlantumlDocumentationCodegen extends DefaultCodegen implements Code
return value;
}
@Override
public String escapeQuotationMark(String input) {
// to surpress the warning message
return input;
}
@Override
public String escapeUnsafeCharacters(String input) {
// to surpress the warning message
return input;
}
}