Skip to content

Commit

Permalink
[pagingscrollview] Remove -[NIPagingScrollView pagingScrollView] beca…
Browse files Browse the repository at this point in the history
…use it has been deprecated for a long time now.
  • Loading branch information
stephanemoore committed Oct 22, 2014
1 parent 4afb566 commit 9e2c3ae
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 18 deletions.
9 changes: 0 additions & 9 deletions src/pagingscrollview/src/NIPagingScrollView+Subclassing.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,6 @@

@end

// Deprecated methods formerly used by subclasses.
// This category will be removed on February 28, 2014.
@interface NIPagingScrollView (DeprecatedSubclassingMethods)

// Use -[NIPagingScrollView scrollView] instead.
- (UIScrollView *)pagingScrollView __NI_DEPRECATED_METHOD;

@end

/**
* Called before the page is about to be shown and after its frame has been set.
*
Expand Down
9 changes: 0 additions & 9 deletions src/pagingscrollview/src/NIPagingScrollView.m
Original file line number Diff line number Diff line change
Expand Up @@ -709,13 +709,4 @@ - (NSMutableSet *)visiblePages {
return _visiblePages;
}

#pragma mark - Deprecated Methods

#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-implementations"
- (UIScrollView *)pagingScrollView {
return [self scrollView];
}
#pragma clang diagnostic pop

@end

0 comments on commit 9e2c3ae

Please sign in to comment.