in transform/src/patch/java/org/apache/openjpa/lib/meta/ClassMetaDataIterator.java [180:189]
public InputStream getInputStream() throws IOException {
if (_url == -1 || _url >= _urls.size())
throw new IllegalStateException();
try {
return AccessController.doPrivileged(
J2DoPrivHelper.openStreamAction(_urls.get(_url)));
} catch (PrivilegedActionException pae) {
throw (IOException) pae.getException();
}
}