Skip to content

Commit

Permalink
Removed an errant debug statement
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeltyson committed Jul 23, 2015
1 parent 3949457 commit ad4c412
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions TPKeyboardAvoiding/UIScrollView+TPKeyboardAvoidingAdditions.m
Expand Up @@ -208,8 +208,6 @@ - (void)TPKeyboardAvoiding_findNextInputViewAfterView:(UIView*)priorView beneath
// Use a heuristic to evaluate candidates
CGFloat heuristic = [self TPKeyboardAvoiding_nextInputViewHeuristicForViewFrame:frame];

NSLog(@"%@: (%lfx%lf, %lf)", ((UITextField*)childView).placeholder, frame.origin.x, frame.origin.y, heuristic);

// Find views beneath, or to the right. For those views that match, choose the view closest to the top left
if ( childView != priorView
&& ((fabs(CGRectGetMinY(frame) - CGRectGetMinY(priorFrame)) < FLT_EPSILON && CGRectGetMinX(frame) > CGRectGetMinX(priorFrame))
Expand Down

0 comments on commit ad4c412

Please sign in to comment.