remove duplicate function

Move back to delegate.
Throw error when using exact class, don't throw error when using protocol.
remove unused search path
This commit is contained in:
Pfeil, Scott Robert 2019-01-17 18:52:05 -05:00
parent da9b0caf7e
commit 88c8531bbd
4 changed files with 1 additions and 8 deletions

View File

@ -18,7 +18,6 @@ extern CGFloat const CloseButtonWidth;
@interface MFCustomButton : UIButton <MFButtonProtocol> @interface MFCustomButton : UIButton <MFButtonProtocol>
@property (nullable, nonatomic, strong) id dataPassed;
@property (nullable, nonatomic, strong) NSDictionary *actionMap; @property (nullable, nonatomic, strong) NSDictionary *actionMap;
@property (nullable, nonatomic, weak) id <ButtonDelegateProtocol> buttonDelegate; @property (nullable, nonatomic, weak) id <ButtonDelegateProtocol> buttonDelegate;
@property (nullable, nonatomic, strong) NSLayoutConstraint *heightConstraint; @property (nullable, nonatomic, strong) NSLayoutConstraint *heightConstraint;

View File

@ -688,7 +688,7 @@
if (!error && (loadObject.requestParameters.openSupportPanel || [loadObject.systemParametersJSON boolForKey:KeyOpenSupport])) { if (!error && (loadObject.requestParameters.openSupportPanel || [loadObject.systemParametersJSON boolForKey:KeyOpenSupport])) {
[[MVMCoreUISession sharedGlobal].splitViewController showRightPanelAnimated:YES]; [[MVMCoreUISession sharedGlobal].splitViewController showRightPanelAnimated:YES];
} }
[[MVMCoreUILoggingHandler sharedLoggingHandler] defaultTrackLoadFinishedForController:self loadObject:loadObject]; [MVMCoreUILoggingHandler logWithDelegateLoadFinished:loadObject loadedViewController:loadedViewController error:error];
} }
- (void)loadCancelled:(nullable MVMCoreLoadObject *)loadObject { - (void)loadCancelled:(nullable MVMCoreLoadObject *)loadObject {

View File

@ -21,9 +21,6 @@ NS_ASSUME_NONNULL_BEGIN
- (void)defaultLogActionForController:(nonnull MFViewController *)controller actionInformation:(nullable NSDictionary *)actionInformation additionalData:(nullable NSDictionary *)additionalData; - (void)defaultLogActionForController:(nonnull MFViewController *)controller actionInformation:(nullable NSDictionary *)actionInformation additionalData:(nullable NSDictionary *)additionalData;
- (nullable NSDictionary *)defaultGetActionTrackDataDictionaryForController:(nonnull MFViewController *)controller actionInformation:(nullable NSDictionary *)actionInformation additionalData:(nullable NSDictionary *)additionalData; - (nullable NSDictionary *)defaultGetActionTrackDataDictionaryForController:(nonnull MFViewController *)controller actionInformation:(nullable NSDictionary *)actionInformation additionalData:(nullable NSDictionary *)additionalData;
// Load Logging
- (void)defaultTrackLoadFinishedForController:(nonnull MFViewController *)controller loadObject:(nullable MVMCoreLoadObject *)loadObject;
@end @end
NS_ASSUME_NONNULL_END NS_ASSUME_NONNULL_END

View File

@ -20,7 +20,4 @@
return nil; return nil;
} }
- (void)defaultTrackLoadFinishedForController:(nonnull MFViewController *)controller loadObject:(nullable MVMCoreLoadObject *)loadObject {
}
@end @end