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

Commit

Permalink
Fix nullable annotation. (#2878)
Browse files Browse the repository at this point in the history
  • Loading branch information
wqyfavor authored and jianhan-he committed Sep 4, 2019
1 parent 23821f9 commit 72b0bdb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
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

0 comments on commit 72b0bdb

Please sign in to comment.