testing/testutils/src/main/java/org/apache/axiom/testutils/io/CharacterStreamComparator.java [99:109]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void close() throws IOException {
        if (in.read() != -1) {
            fail(
                    "The two streams have different lengths: len("
                            + name1
                            + ") > len("
                            + name2
                            + ") = "
                            + position);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



testing/testutils/src/main/java/org/apache/axiom/testutils/io/ByteStreamComparator.java [99:109]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void close() throws IOException {
        if (in.read() != -1) {
            fail(
                    "The two streams have different lengths: len("
                            + name1
                            + ") > len("
                            + name2
                            + ") = "
                            + position);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



