summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLTTSChunkFactory.m
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLTTSChunkFactory.m')
-rw-r--r--SmartDeviceLink/SDLTTSChunkFactory.m23
1 files changed, 0 insertions, 23 deletions
diff --git a/SmartDeviceLink/SDLTTSChunkFactory.m b/SmartDeviceLink/SDLTTSChunkFactory.m
deleted file mode 100644
index 7d0259e83..000000000
--- a/SmartDeviceLink/SDLTTSChunkFactory.m
+++ /dev/null
@@ -1,23 +0,0 @@
-// SDLTTSChunkFactory.m
-//
-
-#import "SDLTTSChunkFactory.h"
-
-#import "SDLTTSChunk.h"
-
-@implementation SDLTTSChunkFactory
-
-+ (SDLTTSChunk *)buildTTSChunkForString:(NSString *)text type:(SDLSpeechCapabilities)type {
- SDLTTSChunk *ret = [[SDLTTSChunk alloc] initWithText:text type:type];
-
- return ret;
-}
-
-+ (NSMutableArray<SDLTTSChunk *> *)buildTTSChunksFromSimple:(NSString *)simple {
- if (simple == nil)
- return nil;
-
- return [NSMutableArray arrayWithObject:[SDLTTSChunkFactory buildTTSChunkForString:simple type:SDLSpeechCapabilitiesText]];
-}
-
-@end