@@ -13,11 +13,10 @@ * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #import "OFException.h" -#import "OFCryptoHash.h" /*! * @class OFHashAlreadyCalculatedException \ * OFHashAlreadyCalculatedException.h \ * ObjFW/OFHashAlreadyCalculatedException.h @@ -24,29 +23,29 @@ * * @brief An exception indicating that the hash has already been calculated. */ @interface OFHashAlreadyCalculatedException: OFException { - id _object; + id _object; } /*! * The hash which has already been calculated. */ -@property (readonly, retain) id object; +@property (readonly, retain) id object; /*! * @brief Creates a new, autoreleased hash already calculated exception. * * @param object The hash which has already been calculated * @return A new, autoreleased hash already calculated exception */ -+ (instancetype)exceptionWithObject: (id )object; ++ (instancetype)exceptionWithObject: (id)object; /*! * @brief Initializes an already allocated hash already calculated exception. * * @param object The hash which has already been calculated * @return An initialized hash already calculated exception */ -- initWithObject: (id )object; +- initWithObject: (id)object; @end