Merge pull request #6 in BPHVB/mvm_core from bugfix/error_method_signature_fix to develop

* commit 'bf67737a30cd47bfc5fd1c7fc0c3a128ad23098d':
  Changing class method(+) to object method(-), because respective code was not working.
This commit is contained in:
Sommer, Patrick 2018-02-13 10:36:05 -05:00
commit 9bfd5e9138

View File

@ -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