You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One thing to keep in mind is that javax.xml.stream.XMLInputFactory::newInstance always had the potential to return an instance of a type that is not accessible. It could have returned an instance of a package private class for example. Using getClass() and assume it is public has always been a bit of an anti-pattern in core reflection. Here's one way that you can walk to hierarchy to find the member that is accessible:
See http://dev.clojure.org/jira/browse/CLJ-2066
The text was updated successfully, but these errors were encountered: