private void complete()

in main/src/main/java/org/apache/james/jdkim/canon/SimpleBodyCanonicalizer.java [102:112]


    private void complete() throws IOException {
        if (DEEP_DEBUG)
            System.out.println("C:(" + lastWasCR + "|" + countCRLF + ")");
        if (lastWasCR) {
            // if the last char was a CR we'll let dumpCRLF
            // to output the missing \n
            lastWasCR = false;
        }
        countCRLF = 1;
        dumpCRLF();
    }