Skip to content

Commit 2bea4cb

Browse files
author
TuringTechnologies
committed
Correcting an error leftover in the reused file. This will be 10.0.1.
1 parent 607ac20 commit 2bea4cb

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

lib/src/main/java/com/turingtechnologies/materialscrollbar/LayoutWrapContentUpdater.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package com.turingtechnologies.materialscrollbar;
22

3-
import android.util.Log;
43
import android.view.View;
54
import android.view.View.MeasureSpec;
65
import android.view.ViewGroup;
@@ -94,17 +93,14 @@ private static void recurseWrapContent( View nodeView, boolean relayoutAllNodes
9493
if ( isWrapWidth && nodeView.getMeasuredWidth() > 0 ) {
9594
right = nodeView.getLeft() + nodeView.getMeasuredWidth();
9695
changed = true;
97-
Log.v(TAG, "+++ LayoutWrapContentUpdater recurseWrapContent set Width to "+ nodeView.getMeasuredWidth() +" of node Tag="+ nodeView.getTag() +" ["+ nodeView +"]");
9896
}
9997
if ( isWrapHeight && nodeView.getMeasuredHeight() > 0 ) {
10098
bottom = nodeView.getTop() + nodeView.getMeasuredHeight();
10199
changed = true;
102-
Log.v(TAG, "+++ LayoutWrapContentUpdater recurseWrapContent set Height to "+ nodeView.getMeasuredHeight() +" of node Tag="+ nodeView.getTag() +" ["+ nodeView +"]");
103100
}
104101

105102
if (changed) {
106103
nodeView.layout( nodeView.getLeft(), nodeView.getTop(), right, bottom );
107-
// FIXME: Adjust left & top position when gravity = "center" / "bottom" / "right"
108104
}
109105
}
110106

0 commit comments

Comments
 (0)