in vito/options/src/main/java/com/facebook/fresco/vito/options/DecodedImageOptions.java [127:143]
public int hashCode() {
int result = super.hashCode();
result = 31 * result + (mResizeOptions != null ? mResizeOptions.hashCode() : 0);
result = 31 * result + (mRotationOptions != null ? mRotationOptions.hashCode() : 0);
result = 31 * result + (mPostprocessor != null ? mPostprocessor.hashCode() : 0);
result = 31 * result + (mImageDecodeOptions != null ? mImageDecodeOptions.hashCode() : 0);
result = 31 * result + (mRoundingOptions != null ? mRoundingOptions.hashCode() : 0);
result = 31 * result + (mBorderOptions != null ? mBorderOptions.hashCode() : 0);
result = 31 * result + (mActualImageScaleType != null ? mActualImageScaleType.hashCode() : 0);
result = 31 * result + (mActualImageFocusPoint != null ? mActualImageFocusPoint.hashCode() : 0);
result = 31 * result + (mLocalThumbnailPreviewsEnabled ? 1 : 0);
result = 31 * result + (mBitmapConfig != null ? mBitmapConfig.hashCode() : 0);
result =
31 * result
+ (mProgressiveDecodingEnabled != null ? mProgressiveDecodingEnabled.hashCode() : 0);
return result;
}