summaryrefslogtreecommitdiff
path: root/core/java/android
diff options
context:
space:
mode:
authorAdam Powell <adamp@google.com>2012-03-01 10:50:09 -0800
committerAdam Powell <adamp@google.com>2012-03-02 10:44:36 -0800
commit1a7dd039f189036709bc2253ba50955913f59d7a (patch)
tree40a528c88e21f92ac0637f2a6d758f34fe8acf1c /core/java/android
parentc13accb265f498a3e4fa7bd258628bc605ee534c (diff)
Unhide transient state APIs on View
Change-Id: I0f14728c94cd3461431352e6f01311934aec9858
Diffstat (limited to 'core/java/android')
-rw-r--r--core/java/android/view/View.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/core/java/android/view/View.java b/core/java/android/view/View.java
index 1e6bca5c11a5..f7dc73cb4dae 100644
--- a/core/java/android/view/View.java
+++ b/core/java/android/view/View.java
@@ -4893,8 +4893,6 @@ public class View implements Drawable.Callback, Drawable.Callback2, KeyEvent.Cal
* the framework should take special note to preserve when possible.
*
* @return true if the view has transient state
- *
- * @hide
*/
@ViewDebug.ExportedProperty(category = "layout")
public boolean hasTransientState() {
@@ -4906,8 +4904,6 @@ public class View implements Drawable.Callback, Drawable.Callback2, KeyEvent.Cal
* framework should attempt to preserve when possible.
*
* @param hasTransientState true if this view has transient state
- *
- * @hide
*/
public void setHasTransientState(boolean hasTransientState) {
if (hasTransientState() == hasTransientState) return;