Bug 846751 - Remove unnecessary log call in TwoWayView (r=mfinkle)

This commit is contained in:
Lucas Rocha 2013-03-03 23:01:30 +00:00
parent 3f4feeb7b3
commit 91b209197f

View File

@ -1865,7 +1865,7 @@ public class TwoWayView extends AdapterView<ListAdapter> implements
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;
}