return ObjectUtils.<T> readObjectQuietly(new FastByteArrayInputStream(obj), cl);
}
public static <T> T readGzipCompressedObjectQuietly(final byte[] obj) {
final FastByteArrayInputStream bis = new FastByteArrayInputStream(obj);
final GZIPInputStream gis;
try {
gis = new GZIPInputStream(bis);
} catch (IOException e) {
throw new IllegalStateException(e);
}
return ObjectUtils.<T> readObjectQuietly(gis);
}