protected static String createLinkPatternedText()

in src/main/java/org/apache/maven/reporting/AbstractMavenReportRenderer.java [461:471]


    protected static String createLinkPatternedText(String text, String href) {
        if (text == null) {
            return text;
        }

        if (href == null) {
            return text;
        }

        return '{' + text + ", " + href + '}';
    }