summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2018-01-10 11:52:18 -0500
committerJoel Fischer <joeljfischer@gmail.com>2018-01-10 11:52:18 -0500
commit6654e3bd28bbdee5b245e7c0c778590231123966 (patch)
tree301aa256ff6239c9f54c037500f620559718113e
parent302b0b4bef512526de9af2a2eae92a4d874a96d0 (diff)
downloadsdl_ios-6654e3bd28bbdee5b245e7c0c778590231123966.tar.gz
Remove unneeded haptic rect test
-rw-r--r--SmartDeviceLink_Example/Classes/ProxyManager.m6
1 files changed, 0 insertions, 6 deletions
diff --git a/SmartDeviceLink_Example/Classes/ProxyManager.m b/SmartDeviceLink_Example/Classes/ProxyManager.m
index 478ae8296..1786e2639 100644
--- a/SmartDeviceLink_Example/Classes/ProxyManager.m
+++ b/SmartDeviceLink_Example/Classes/ProxyManager.m
@@ -133,12 +133,6 @@ NS_ASSUME_NONNULL_BEGIN
self.initialShowState = SDLHMIInitialShowStateShown;
[self sdlex_showWithManager:self.sdlManager];
-
- SDLHapticRect *hapticRect = [[SDLHapticRect alloc] initWithId:1 rect:[[SDLRectangle alloc] initWithX:12.34 y:42.3 width:69 height:69]];
- SDLSendHapticData *sendHaptic = [[SDLSendHapticData alloc] initWithHapticRectData:@[hapticRect]];
- [self.sdlManager sendRequest:sendHaptic withResponseHandler:^(__kindof SDLRPCRequest * _Nullable request, __kindof SDLRPCResponse * _Nullable response, NSError * _Nullable error) {
- NSLog(@"STOP");
- }];
}
- (void)sdlex_showWithManager:(SDLManager *)manager {