remove debug code for now

This commit is contained in:
Scott Pfeil 2023-06-21 12:23:59 -04:00
parent 05289f88aa
commit 25394dc640
2 changed files with 0 additions and 10 deletions

View File

@ -371,11 +371,6 @@
return;
}
#if TESTING
if ([[MVMCoreObject sharedInstance].globalLoadDelegate respondsToSelector:@selector(modifyJSON:)]) {
jsonDictionary = [[MVMCoreObject sharedInstance].globalLoadDelegate modifyJSON:jsonDictionary];
}
#endif
loadObject.responseJSON = jsonDictionary;
// Store the new page data if we didn't load page data from the cache.

View File

@ -16,11 +16,6 @@
@optional
#if TESTING
/// Allows a chance to modify the json and provide local test json.
- (nonnull NSDictionary *)modifyJSON:(nonnull NSDictionary *)json;
#endif
// Provides the desired error screen for the native error. Called on the main thread. If set, any native errors or NSURLErrorDomain errors will use a native screen.
- (nullable UIViewController <MVMCoreViewControllerProtocol> *)getNativeScreenForRequestError:(nonnull MVMCoreErrorObject *)errorObject requestObject:(nonnull MVMCoreRequestParameters *)requestObject;