Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix switch statement warning.
  • Loading branch information
stuconnolly committed Jun 20, 2018
1 parent 635540b commit 969f5c3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Source/SPDatabaseDocument.m
Expand Up @@ -6803,7 +6803,6 @@ - (void)_loadTabTask:(NSNumber *)tabViewItemIndexNumber
contentLoaded = YES;
}
break;
#ifndef SP_CODA /* case SPTableViewStatus: case SPTableViewTriggers: */
case SPTableViewStatus:
if (!statusLoaded) {
[[extendedTableInfoInstance onMainThread] loadTable:selectedTableName];
Expand All @@ -6822,7 +6821,9 @@ - (void)_loadTabTask:(NSNumber *)tabViewItemIndexNumber
relationsLoaded = YES;
}
break;
#endif
case SPTableViewCustomQuery:
case SPTableViewInvalid:
break;
}

[self endTask];
Expand Down

0 comments on commit 969f5c3

Please sign in to comment.