mirror of
https://github.com/mas-cli/mas
synced 2025-02-16 12:38:30 +00:00
Remove unused imports
This commit is contained in:
parent
0bc51ede97
commit
edfc1403c2
3 changed files with 14 additions and 19 deletions
|
@ -7,6 +7,8 @@
|
|||
#import "CKServiceInterface.h"
|
||||
#import "SSPurchase.h"
|
||||
|
||||
@class SSPurchaseResponse;
|
||||
|
||||
@interface CKPurchaseController : CKServiceInterface
|
||||
{
|
||||
NSMutableArray *_purchases;
|
||||
|
|
|
@ -27,22 +27,22 @@ typedef void (^ISErrorHandler)(NSError * __nonnull error);
|
|||
//@property(readonly, nonatomic) id <ISInAppService> inAppService;
|
||||
//- (id)inAppServiceWithErrorHandler:(CDUnknownBlockType)arg1;
|
||||
//- (void)transactionServiceSynchronousBlock:(CDUnknownBlockType)arg1;
|
||||
@property(readonly, nonatomic) id <ISTransactionService> __nullable transactionService;
|
||||
- (id __nullable)transactionServiceWithErrorHandler:(ISErrorHandler __nonnull)arg1;
|
||||
//@property(readonly, nonatomic) id <ISTransactionService> __nullable transactionService;
|
||||
//- (id __nullable)transactionServiceWithErrorHandler:(ISErrorHandler __nonnull)arg1;
|
||||
//- (void)assetServiceSynchronousBlock:(CDUnknownBlockType)arg1;
|
||||
//@property(readonly, nonatomic) id <ISAssetService> assetService;
|
||||
//- (id)assetServiceWithErrorHandler:(CDUnknownBlockType)arg1;
|
||||
//- (void)downloadServiceSynchronousBlock:(CDUnknownBlockType)arg1;
|
||||
//@property(readonly, nonatomic) id <ISDownloadService> downloadService;
|
||||
//- (id)downloadServiceWithErrorHandler:(CDUnknownBlockType)arg1;
|
||||
- (void)accountServiceSynchronousBlock:(void (^ __nonnull)(id <ISAccountService> __nonnull))arg1;
|
||||
@property(readonly, nonatomic) id <ISAccountService> __nonnull accountService;
|
||||
- (id <ISAccountService> __nonnull)accountServiceWithErrorHandler:(ISErrorHandler __nonnull)arg1;
|
||||
//- (void)accountServiceSynchronousBlock:(void (^ __nonnull)(id <ISAccountService> __nonnull))arg1;
|
||||
//@property(readonly, nonatomic) id <ISAccountService> __nonnull accountService;
|
||||
//- (id <ISAccountService> __nonnull)accountServiceWithErrorHandler:(ISErrorHandler __nonnull)arg1;
|
||||
//- (void)performSynchronousBlock:(CDUnknownBlockType)arg1 withServiceName:(id)arg2 protocol:(id)arg3 isMachService:(BOOL)arg4 interfaceClassName:(id)arg5;
|
||||
//- (id)objectProxyForServiceName:(id)arg1 protocol:(id)arg2 interfaceClassName:(id)arg3 isMachService:(BOOL)arg4 errorHandler:(CDUnknownBlockType)arg5;
|
||||
//- (id)connectionWithServiceName:(id)arg1 protocol:(id)arg2 isMachService:(BOOL)arg3;
|
||||
@property(readonly, nonatomic) Protocol * __nullable exportedProtocol;
|
||||
@property(readonly, nonatomic) __weak id <ISServiceRemoteObject> __nullable exportedObject;
|
||||
//@property(readonly, nonatomic) Protocol * __nullable exportedProtocol;
|
||||
//@property(readonly, nonatomic) __weak id <ISServiceRemoteObject> __nullable exportedObject;
|
||||
- (ISServiceProxy * __nonnull)initWithStoreClient:(ISStoreClient * __nonnull)arg1;
|
||||
|
||||
@end
|
||||
|
|
|
@ -11,28 +11,21 @@
|
|||
|
||||
@import Foundation;
|
||||
|
||||
#import "ISServiceRemoteObject-Protocol.h"
|
||||
#import "ISAccountService-Protocol.h"
|
||||
#import "ISTransactionService-Protocol.h"
|
||||
#import "ISServiceProxy.h"
|
||||
#import "ISServiceClientInterface.h"
|
||||
#import "ISStoreClient.h"
|
||||
#import "ISStoreAccount.h"
|
||||
|
||||
#import "CKAccountStore.h"
|
||||
#import "CKDownloadQueue.h"
|
||||
#import "CKDownloadQueueClient.h"
|
||||
#import "CKPurchaseController.h"
|
||||
#import "CKSoftwareMap.h"
|
||||
#import "CKUpdateController.h"
|
||||
|
||||
#import "SSDownload.h"
|
||||
#import "SSDownloadStatus.h"
|
||||
#import "SSDownloadMetadata.h"
|
||||
#import "SSDownloadPhase.h"
|
||||
#import "SSDownloadStatus.h"
|
||||
#import "SSPurchase.h"
|
||||
#import "SSPurchaseResponse.h"
|
||||
#import "SSDownloadMetadata.h"
|
||||
#import "CKItemLookupRequest.h"
|
||||
#import "CKItemLookupResponse.h"
|
||||
#import "CKPurchaseController.h"
|
||||
#import "CKUpdateController.h"
|
||||
|
||||
@protocol CKDownloadQueueObserver
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue