axiom-api/src/main/java/org/apache/axiom/util/stax/dialect/SJSXPOutputFactoryWrapper.java [31:50]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        super(parent, dialect);
    }

    @Override
    public XMLEventWriter createXMLEventWriter(OutputStream stream, String encoding)
            throws XMLStreamException {
        if (encoding == null) {
            throw new IllegalArgumentException();
        } else {
            return super.createXMLEventWriter(stream, encoding);
        }
    }

    @Override
    public XMLStreamWriter createXMLStreamWriter(OutputStream stream, String encoding)
            throws XMLStreamException {
        if (encoding == null) {
            throw new IllegalArgumentException();
        } else {
            return super.createXMLStreamWriter(stream, encoding);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



axiom-api/src/main/java/org/apache/axiom/util/stax/dialect/Woodstox4OutputFactoryWrapper.java [31:50]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        super(parent, dialect);
    }

    @Override
    public XMLEventWriter createXMLEventWriter(OutputStream stream, String encoding)
            throws XMLStreamException {
        if (encoding == null) {
            throw new IllegalArgumentException();
        } else {
            return super.createXMLEventWriter(stream, encoding);
        }
    }

    @Override
    public XMLStreamWriter createXMLStreamWriter(OutputStream stream, String encoding)
            throws XMLStreamException {
        if (encoding == null) {
            throw new IllegalArgumentException();
        } else {
            return super.createXMLStreamWriter(stream, encoding);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



