diff options
| author | 2011-11-28 18:05:03 -0800 | |
|---|---|---|
| committer | 2011-11-28 18:05:03 -0800 | |
| commit | cdfab19bf761eb6faaae119ab13b5a9de855770c (patch) | |
| tree | 1d0280196ea9be4b7e75b8e2c9aed44f1f627a61 | |
| parent | 866103c00dd8028443ee8d7f9f3ca89f4acbc179 (diff) | |
Restoring mLayout has private in TextView
Change-Id: If8c4385ec0b64fb2055f4561aeeb1c145294d679
| -rw-r--r-- | core/java/android/widget/TextView.java | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/core/java/android/widget/TextView.java b/core/java/android/widget/TextView.java index ee5fa64a78b8..4d7690de995c 100644 --- a/core/java/android/widget/TextView.java +++ b/core/java/android/widget/TextView.java @@ -11460,13 +11460,7 @@ public class TextView extends View implements ViewTreeObserver.OnPreDrawListener private boolean mUserSetTextScaleX; private final Paint mHighlightPaint; private int mHighlightColor = 0x6633B5E5; - /** - * This is temporarily visible to fix bug 3085564 in webView. Do not rely on - * this field being protected. Will be restored as private when lineHeight - * feature request 3215097 is implemented - * @hide - */ - protected Layout mLayout; + private Layout mLayout; private long mShowCursor; private Blink mBlink; |