diff options
| author | Chris Wren <cwren@android.com> | 2012-05-23 17:15:34 -0400 |
|---|---|---|
| committer | Chris Wren <cwren@android.com> | 2012-05-23 17:15:34 -0400 |
| commit | 5462508f05286d873183b72106928c17f259ff67 (patch) | |
| tree | ec48c1fd633fb9f8b6ff36d1140492f6758c6af6 /core/java/com | |
| parent | 0eaeb69d1c4849da8ab1df70b84e90837193df67 (diff) | |
| download | frameworks_base-5462508f05286d873183b72106928c17f259ff67.zip frameworks_base-5462508f05286d873183b72106928c17f259ff67.tar.gz frameworks_base-5462508f05286d873183b72106928c17f259ff67.tar.bz2 | |
Squelch the logs from SizeAdaptiveLayout.
Bug: 6540109
Change-Id: I52bd64e2f5d1b2f02ef7e956ddf1340fb9b2aff3
Diffstat (limited to 'core/java/com')
| -rw-r--r-- | core/java/com/android/internal/widget/SizeAdaptiveLayout.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/com/android/internal/widget/SizeAdaptiveLayout.java b/core/java/com/android/internal/widget/SizeAdaptiveLayout.java index bbf5509..7687ad1 100644 --- a/core/java/com/android/internal/widget/SizeAdaptiveLayout.java +++ b/core/java/com/android/internal/widget/SizeAdaptiveLayout.java @@ -175,7 +175,7 @@ public class SizeAdaptiveLayout extends ViewGroup { height = Math.min(height, lp.maxHeight); } - if (heightIn != height) { + if (DEBUG && heightIn != height) { Log.d(TAG, this + "child view " + child + " " + "measured out of bounds at " + heightIn +"px " + "clamped to " + height + "px"); |
