Skip to content
This repository has been archived by the owner on Jun 3, 2021. It is now read-only.

Fix nullable annotation. #2878

Merged
merged 1 commit into from
Sep 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ios/sdk/WeexSDK/Sources/Performance/WXApmForInstance.h
Original file line number Diff line number Diff line change
Expand Up @@ -150,11 +150,11 @@ extern NSString* const VALUE_ERROR_CODE_DEFAULT;
#pragma mark - called by IWXHttpAdapter implementer

- (void) actionNetRequest;
- (void) actionNetRequestResult:(bool)succeed withErrorCode:(NSString*)errorCode;
- (void) actionNetRequestResult:(bool)succeed withErrorCode:(nullable NSString*)errorCode;

#pragma mark - called by IWXImgLoaderAdapter implementer
- (void) actionImgLoad;
- (void) actionImgLoadResult:(bool)succeed withErrorCode:(NSString*)errorCode;
- (void) actionImgLoadResult:(bool)succeed withErrorCode:(nullable NSString*)errorCode;

#pragma mark record top5 errorMsg
- (void) recordErrorMsg:(WXJSExceptionInfo *)exception;
Expand Down
8 changes: 4 additions & 4 deletions ios/sdk/WeexSDK/Sources/WeexSDK.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ FOUNDATION_EXPORT double WeexSDKVersionNumber;

FOUNDATION_EXPORT const unsigned char WeexSDKVersionString[];

#import "style.h"
#import "layout.h"
#import "flex_enum.h"
#import "eagle_bridge.h"
#import <WeexSDK/style.h>
#import <WeexSDK/layout.h>
#import <WeexSDK/flex_enum.h>
#import <WeexSDK/eagle_bridge.h>
#import <WeexSDK/WXWebSocketHandler.h>
#import <WeexSDK/WXVoiceOverModule.h>
#import <WeexSDK/WXView.h>
Expand Down