throw new XQRemoteException(e);
}
final FastByteArrayInputStream fis = new FastByteArrayInputStream(fetchedData);
final InputStream is;
try {
is = compressed ? new LZFInputStream(fis) : fis;
} catch (IOException e) {
throw new IllegalStateException(e);
}
int fetched = fetchInternal(is);
return fetched;