mirror of https://github.com/oxen-io/session-ios
Merge branch 'charlesmchen/fixBuildWarningsNullability'
commit
8153926bbc
@ -1,13 +1,17 @@
|
|||||||
//
|
//
|
||||||
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
// Copyright (c) 2019 Open Whisper Systems. All rights reserved.
|
||||||
//
|
//
|
||||||
|
|
||||||
#import "OWSPrimaryStorage.h"
|
#import "OWSPrimaryStorage.h"
|
||||||
#import <AxolotlKit/PreKeyStore.h>
|
#import <AxolotlKit/PreKeyStore.h>
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_BEGIN
|
||||||
|
|
||||||
@interface OWSPrimaryStorage (PreKeyStore) <PreKeyStore>
|
@interface OWSPrimaryStorage (PreKeyStore) <PreKeyStore>
|
||||||
|
|
||||||
- (NSArray<PreKeyRecord *> *)generatePreKeyRecords;
|
- (NSArray<PreKeyRecord *> *)generatePreKeyRecords;
|
||||||
- (void)storePreKeyRecords:(NSArray<PreKeyRecord *> *)preKeyRecords NS_SWIFT_NAME(storePreKeyRecords(_:));
|
- (void)storePreKeyRecords:(NSArray<PreKeyRecord *> *)preKeyRecords NS_SWIFT_NAME(storePreKeyRecords(_:));
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_END
|
||||||
|
@ -1,11 +1,15 @@
|
|||||||
//
|
//
|
||||||
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
// Copyright (c) 2019 Open Whisper Systems. All rights reserved.
|
||||||
//
|
//
|
||||||
|
|
||||||
#import "OWSPrimaryStorage.h"
|
#import "OWSPrimaryStorage.h"
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_BEGIN
|
||||||
|
|
||||||
@interface OWSPrimaryStorage (keyFromIntLong)
|
@interface OWSPrimaryStorage (keyFromIntLong)
|
||||||
|
|
||||||
- (NSString *)keyFromInt:(int)integer;
|
- (NSString *)keyFromInt:(int)integer;
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_END
|
||||||
|
@ -1,9 +1,13 @@
|
|||||||
//
|
//
|
||||||
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
|
// Copyright (c) 2019 Open Whisper Systems. All rights reserved.
|
||||||
//
|
//
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_BEGIN
|
||||||
|
|
||||||
@interface NSURLSessionTask (StatusCode)
|
@interface NSURLSessionTask (StatusCode)
|
||||||
|
|
||||||
- (long)statusCode;
|
- (long)statusCode;
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_END
|
||||||
|
Loading…
Reference in New Issue