Skip to content

Commit

Permalink
[library] Remove logging leftover
Browse files Browse the repository at this point in the history
Fixes lucasr#10
  • Loading branch information
lucasr committed Mar 1, 2013
1 parent 6cad651 commit 7cebe53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/src/org/lucasr/twowayview/TwoWayView.java
Original file line number Diff line number Diff line change
Expand Up @@ -1863,7 +1863,7 @@ boolean trackMotionScroll(int incrementalDelta) {
for (int i = 0; i < childCount; i++) {
final View child = getChildAt(i);
final int childEnd = (mIsVertical ? child.getBottom() : child.getRight());
Log.d(LOGTAG, " - childEnd: " + childEnd + " >= " + childrenStart);

if (childEnd >= childrenStart) {
break;
}
Expand Down

0 comments on commit 7cebe53

Please sign in to comment.