public HtmlSAXSupport()

in src/main/java/org/apache/sling/commons/html/util/HtmlSAXSupport.java [41:48]


    public HtmlSAXSupport(ContentHandler ch, final LexicalHandler lh) {
        if (ch != null) {
            contentHandler = ch;
        }
        if (lh != null) {
            lexicalHandler = lh;
        }
    }