Skip to content
This repository has been archived by the owner on Nov 30, 2019. It is now read-only.

Commit

Permalink
comments cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
robertwijas committed Mar 9, 2013
1 parent fb9ff35 commit bbe4c1b
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
Expand Up @@ -26,7 +26,7 @@
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "NO" shouldUseLaunchSchemeArgsEnv = "NO"
buildConfiguration = "Release"> buildConfiguration = "Debug">
<Testables> <Testables>
<TestableReference <TestableReference
skipped = "NO"> skipped = "NO">
Expand Down
2 changes: 1 addition & 1 deletion Project/UISS/UISSPropertySetter.m
Expand Up @@ -236,7 +236,7 @@ - (NSInvocation *)invocation;
- (id)target; - (id)target;
{ {
// This may be the ugliest method I have ever written // This may be the ugliest method I have ever written
// but I do not know how to call this method having NSArray+UISS of arguments // but I do not know how to call this method having NSArray of arguments


switch (self.containment.count) { switch (self.containment.count) {
case 0: case 0:
Expand Down
1 change: 0 additions & 1 deletion Project/UISSDemo/Classes/UISSDemoFirstViewController.m
Expand Up @@ -30,7 +30,6 @@ - (void)viewDidDisappear:(BOOL)animated


- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{ {
// Return YES for supported orientations
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) { if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {
return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown); return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
} else { } else {
Expand Down
1 change: 0 additions & 1 deletion Project/UISSDemo/Classes/UISSDemoSecondViewController.m
Expand Up @@ -8,7 +8,6 @@ @implementation UISSDemoSecondViewController


- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{ {
// Return YES for supported orientations
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) { if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {
return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown); return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
} else { } else {
Expand Down

0 comments on commit bbe4c1b

Please sign in to comment.