From e44a0ff2e7ccae1069796e5968a1d1863a95390b Mon Sep 17 00:00:00 2001 From: Ruslan Skorb Date: Fri, 8 Jun 2018 09:34:15 +0300 Subject: [PATCH] [Sources] [RSKImageCropViewController] Remove unused variable `kK`. --- RSKImageCropper/RSKImageCropViewController.m | 7 ------- 1 file changed, 7 deletions(-) diff --git a/RSKImageCropper/RSKImageCropViewController.m b/RSKImageCropper/RSKImageCropViewController.m index f5f9db9..b7a9c0c 100644 --- a/RSKImageCropper/RSKImageCropViewController.m +++ b/RSKImageCropper/RSKImageCropViewController.m @@ -33,13 +33,6 @@ static const CGFloat kResetAnimationDuration = 0.4; static const CGFloat kLayoutImageScrollViewAnimationDuration = 0.25; -// K is a constant such that the accumulated error of our floating-point computations is definitely bounded by K units in the last place. -#ifdef CGFLOAT_IS_DOUBLE - static const CGFloat kK = 9; -#else - static const CGFloat kK = 0; -#endif - @interface RSKImageCropViewController () @property (assign, nonatomic) BOOL originalNavigationControllerNavigationBarHidden;