throw new SSKDecodeException("Data length is less than 2 yet compressed!");
else
return BucketTools.makeImmutableBucket(factory, dataOutput, 2, dataLength - 2);
}
Bucket b = Key.decompress(compressionAlgorithm >= 0, dataOutput, dataLength, factory, Math.min(MAX_DECOMPRESSED_DATA_LENGTH, maxLength), compressionAlgorithm, true);
return b;
}