rm obsolete code (PEPTransport)

IPS-165
Andreas Buff 1 year ago
parent 49dcde3999
commit 814fb3f0e4

@ -7,7 +7,6 @@
#import "PEPObjCTypeConversionUtil.h"
#import <PEPTransport.h>
#import <PEPAttachment.h>
#import <PEPMessage.h>
#import <PEPIdentity.h>
@ -16,28 +15,6 @@
@implementation PEPObjCTypeConversionUtil
// MARK: - PEPTransport
+ (PEPTransport * _Nullable)pEpTransportfromStruct:(PEP_transport_t * _Nonnull)transportStruct
{
PEPTransport *result = nil;
NSAssert(false, @"unimplemented stub");
return result;
}
+ (PEP_transport_t *)structFromPEPTransport:(PEPTransport *)pEpTransport
{
PEP_transport_t *transportStruct = NULL;
NSAssert(false, @"unimplemented stub");
return transportStruct;
}
+ (void)overWritePEPTransportObject:(PEPTransport *)pEpTransport
withValuesFromStruct:(PEP_transport_t * _Nonnull)transportStruct
{
NSAssert(false, @"unimplemented stub");
}
// MARK: - PEPMessage
+ (PEPMessage * _Nullable)pEpMessagefromStruct:(message * _Nullable)msg

@ -9,7 +9,6 @@
#import <transport.h>
@class PEPTransport;
@class PEPMessage;
@class PEPIdentity;
@class PEPAttachment;
@ -18,15 +17,6 @@ NS_ASSUME_NONNULL_BEGIN
@interface PEPObjCTypeConversionUtil : NSObject
// MARK: - PEPTransport
+ (PEPTransport * _Nullable)pEpTransportfromStruct:(PEP_transport_t * _Nonnull)transportStruct;
+ (PEP_transport_t *)structFromPEPTransport:(PEPTransport *)pEpTransport;
+ (void)overWritePEPTransportObject:(PEPTransport *)pEpTransport
withValuesFromStruct:(PEP_transport_t * _Nonnull)transportStruct;
// MARK: - PEPMessage
+ (PEPMessage * _Nullable)pEpMessagefromStruct:(message * _Nullable)msg;

Loading…
Cancel
Save