eclipse-ee4j / jax-rpc-ri

JAX RPC Implementation (Eclipse Metro Project)
Other
2 stars 4 forks source link

JAX-RPC RI is not buildable with FastInfoset version > 1.0.2 #59

Closed Tomas-Kraus closed 6 years ago

Tomas-Kraus commented 6 years ago

Later version of FastInfoset causes build error:

    [javac] /home/jenkins/workspace/jax-rpc-ri-master-build/jaxrpc-ri/src/com/sun/xml/rpc/streaming/FastInfosetReader.java:288: error: cannot find symbol
    [javac]         final int end = i + _charactersLength;
    [javac]                             ^
    [javac]   symbol:   variable _charactersLength
    [javac]   location: class FastInfosetReader

Class header says class FastInfosetReader extends StAXDocumentParser and in private boolean isWhiteSpaceCharacters() reference to parent _charactersLength is used, but this variable does not exist in later versions.