Historically we would backdate the SN change messages, but since adopting non-blocking SN changes long ago, they're already sorted properly by creation time, so backdating has been unnecessary for a while. I also audited that all other error messages are saved directly after creation. I applied deprecation attributes as appropriate as I audited.
18 lines
358 B
Objective-C
18 lines
358 B
Objective-C
//
|
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import <SignalServiceKit/TSInteraction.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
// This class is vestigial.
|
|
__attribute__((deprecated))
|
|
@interface TSUnreadIndicatorInteraction : TSInteraction
|
|
|
|
- (instancetype)initWithCoder:(NSCoder *)coder NS_DESIGNATED_INITIALIZER;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|