staxon
staxon copied to clipboard
Getting compilation error on Yylex constructor in JsonStreamFactoryImpl file
As the constructors are in default package level, these are not providing the access outside.
JsonStreamFactoryImpl.java has one method which is trying to access Yylex constructor and throwing compiler error:
@Override
public JsonStreamSource createJsonStreamSource(Reader reader) {
return new JsonStreamSourceImpl(new Yylex(reader), false);
}
Please need your input here.
Don‘t get your problem. Yylex is in the same package, isn‘t it?