summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Kinney <michaelakinney@comcast.net>2021-02-24 10:09:14 -0500
committerMichael Kinney <michaelakinney@comcast.net>2021-02-24 10:09:14 -0500
commitf597491d96c4ade89ce8f495c7295325c9705e01 (patch)
tree27de1db1632cd713e608f7bcbc8e6bcd14f4c61e
parent4464e00d61645c7557c0eee2abfbe2f3149a5f2e (diff)
downloadsdl_ios-f597491d96c4ade89ce8f495c7295325c9705e01.tar.gz
minor formatting changes
-rw-r--r--SmartDeviceLink/private/SDLIAPDataSession.h2
-rw-r--r--SmartDeviceLink/private/SDLIAPSession.h2
-rw-r--r--SmartDeviceLinkTests/TransportSpecs/iAP/SDLIAPControlSessionSpec.m2
3 files changed, 3 insertions, 3 deletions
diff --git a/SmartDeviceLink/private/SDLIAPDataSession.h b/SmartDeviceLink/private/SDLIAPDataSession.h
index 0685a4ece..21917fc8a 100644
--- a/SmartDeviceLink/private/SDLIAPDataSession.h
+++ b/SmartDeviceLink/private/SDLIAPDataSession.h
@@ -44,7 +44,7 @@ NS_ASSUME_NONNULL_BEGIN
/**
* Closes the SDLIAPSession used by the SDLIAPDataSession
*/
-- (void) closeSession;
+- (void)closeSession;
/**
* Sends data to Core via the data session.
diff --git a/SmartDeviceLink/private/SDLIAPSession.h b/SmartDeviceLink/private/SDLIAPSession.h
index 87ab2d244..208597dbe 100644
--- a/SmartDeviceLink/private/SDLIAPSession.h
+++ b/SmartDeviceLink/private/SDLIAPSession.h
@@ -78,7 +78,7 @@ NS_ASSUME_NONNULL_BEGIN
* @param length The number of data bytes to write
* @param completionHandler The number of data bytes actually written
*/
-- (void)write:(NSMutableData *)data length:(NSUInteger)length withCompletionHandler:(void (^)(NSInteger bytesWritten))completionHandler;
+- (void)write:(NSMutableData *)data length:(NSUInteger)length withCompletionHandler:(void (^)(NSInteger bytesWritten))completionHandler;
@end
diff --git a/SmartDeviceLinkTests/TransportSpecs/iAP/SDLIAPControlSessionSpec.m b/SmartDeviceLinkTests/TransportSpecs/iAP/SDLIAPControlSessionSpec.m
index 69d1f59ec..79242d8b0 100644
--- a/SmartDeviceLinkTests/TransportSpecs/iAP/SDLIAPControlSessionSpec.m
+++ b/SmartDeviceLinkTests/TransportSpecs/iAP/SDLIAPControlSessionSpec.m
@@ -38,7 +38,7 @@ describe(@"SDLIAPControlSession", ^{
describe(@"init", ^{
beforeEach(^{
- controlSession = [[SDLIAPControlSession alloc] initWithAccessory:mockAccessory delegate:mockDelegate forProtocol:ControlProtocolString];
+ controlSession = [[SDLIAPControlSession alloc] initWithAccessory:mockAccessory delegate:mockDelegate forProtocol:ControlProtocolString];
});
it(@"Should init correctly", ^{