mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 16:35:33 +00:00
18 lines
437 B
Objective-C
18 lines
437 B
Objective-C
//
|
|
// AppleCompliantTestClient.m
|
|
// KeymanTests
|
|
//
|
|
// Created by tom on 6/25/18.
|
|
// Copyright © 2018 SIL International. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "AppleCompliantTestClient.h"
|
|
|
|
@implementation AppleCompliantTestClient
|
|
|
|
- (NSAttributedString*)attributedSubstringFromRange:(NSRange)range {
|
|
return [[NSAttributedString alloc] initWithString:[super substringFromRangeProtected:range]];
|
|
}
|
|
|
|
@end
|