From bf67737a30cd47bfc5fd1c7fc0c3a128ad23098d Mon Sep 17 00:00:00 2001 From: "Khan, Arshad" Date: Tue, 13 Feb 2018 18:20:04 +0530 Subject: [PATCH] Changing class method(+) to object method(-), because respective code was not working. --- MVMCore/MVMCore/MainProtocols/MVMCoreGlobalLoadProtocol.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MVMCore/MVMCore/MainProtocols/MVMCoreGlobalLoadProtocol.h b/MVMCore/MVMCore/MainProtocols/MVMCoreGlobalLoadProtocol.h index f00666c..fbca045 100644 --- a/MVMCore/MVMCore/MainProtocols/MVMCoreGlobalLoadProtocol.h +++ b/MVMCore/MVMCore/MainProtocols/MVMCoreGlobalLoadProtocol.h @@ -33,6 +33,6 @@ - (NSTimeInterval)timeOutIntervalForRequest:(nullable MVMCoreRequestParameters *)request; // Can return an error object. -+ (nonnull MVMCoreErrorObject *)createErrorObjectForRequestNSError:(nonnull NSError *)error forRequest:(nonnull NSURLRequest *)request location:(nullable NSString *)locationForError; +- (nonnull MVMCoreErrorObject *)createErrorObjectForRequestNSError:(nonnull NSError *)error forRequest:(nonnull NSURLRequest *)request location:(nullable NSString *)locationForError; @end