summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2017-01-26 13:47:47 -0500
committerJoel Fischer <joeljfischer@gmail.com>2017-01-26 13:47:47 -0500
commit9f1f06918edcba0fcd10559f426a2029c5664a65 (patch)
tree4fd55f9e88b348841ae6f05abaced58e6e5a73b7
parentba88adaa93565111fc27585cfbb92c92e0c7eebc (diff)
downloadsdl_ios-9f1f06918edcba0fcd10559f426a2029c5664a65.tar.gz
Fix double semi-colon
-rw-r--r--SmartDeviceLink-iOS.xcodeproj/project.pbxproj5
-rw-r--r--SmartDeviceLink/SDLLifecycleManager.m2
2 files changed, 3 insertions, 4 deletions
diff --git a/SmartDeviceLink-iOS.xcodeproj/project.pbxproj b/SmartDeviceLink-iOS.xcodeproj/project.pbxproj
index e36936373..d131e4d29 100644
--- a/SmartDeviceLink-iOS.xcodeproj/project.pbxproj
+++ b/SmartDeviceLink-iOS.xcodeproj/project.pbxproj
@@ -4292,7 +4292,6 @@
TargetAttributes = {
5D4019AE1A76EC350006B0C2 = {
CreatedOnToolsVersion = 6.1.1;
- DevelopmentTeam = ACNGAAM3M7;
SystemCapabilities = {
com.apple.BackgroundModes = {
enabled = 1;
@@ -5168,7 +5167,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_IDENTITY = "iPhone Developer";
- DEVELOPMENT_TEAM = ACNGAAM3M7;
+ DEVELOPMENT_TEAM = "";
INFOPLIST_FILE = "$(SRCROOT)/SmartDeviceLink_Example/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
@@ -5182,7 +5181,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_IDENTITY = "iPhone Developer";
- DEVELOPMENT_TEAM = ACNGAAM3M7;
+ DEVELOPMENT_TEAM = "";
INFOPLIST_FILE = "$(SRCROOT)/SmartDeviceLink_Example/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
diff --git a/SmartDeviceLink/SDLLifecycleManager.m b/SmartDeviceLink/SDLLifecycleManager.m
index 74770169e..4fdab412f 100644
--- a/SmartDeviceLink/SDLLifecycleManager.m
+++ b/SmartDeviceLink/SDLLifecycleManager.m
@@ -442,7 +442,7 @@ SDLLifecycleState *const SDLLifecycleStateReady = @"Ready";
- (void)transportDidDisconnect {
if (self.lifecycleState == SDLLifecycleStateUnregistering || self.lifecycleState == SDLLifecycleStateStopped) {
- [self.lifecycleStateMachine transitionToState:SDLLifecycleStateStopped];;
+ [self.lifecycleStateMachine transitionToState:SDLLifecycleStateStopped];
} else {
[self.lifecycleStateMachine transitionToState:SDLLifecycleStateReconnecting];
}