summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2017-03-07 13:49:16 -0500
committerGitHub <noreply@github.com>2017-03-07 13:49:16 -0500
commit7e046fa962f7be6949452f2e43ada06dd51be523 (patch)
treeb04453778235d8264bee59834a471e4f081f2c53
parent6c19de268769c2269c4133f6845e18f5b0f93442 (diff)
downloadsdl_ios-7e046fa962f7be6949452f2e43ada06dd51be523.tar.gz
Tiny style update
-rw-r--r--SmartDeviceLink/SDLIAPTransport.m3
1 files changed, 1 insertions, 2 deletions
diff --git a/SmartDeviceLink/SDLIAPTransport.m b/SmartDeviceLink/SDLIAPTransport.m
index 1a4d8a7e2..b90296d07 100644
--- a/SmartDeviceLink/SDLIAPTransport.m
+++ b/SmartDeviceLink/SDLIAPTransport.m
@@ -272,8 +272,7 @@ int const streamOpenTimeoutSeconds = 2;
NSOutputStream *ostream = self.session.easession.outputStream;
NSMutableData *remainder = data.mutableCopy;
- while (ostream.streamStatus == NSStreamStatusOpen &&
- remainder.length != 0) {
+ while (ostream.streamStatus == NSStreamStatusOpen && remainder.length != 0) {
if (ostream.hasSpaceAvailable){
NSInteger bytesWritten = [ostream write:remainder.bytes maxLength:remainder.length];