diff options
author | Daniel Lehmann <lehmannd@google.com> | 2011-10-12 16:24:22 -0700 |
---|---|---|
committer | Daniel Lehmann <lehmannd@google.com> | 2011-10-12 16:24:22 -0700 |
commit | a5b58df09753bd13744381c54c8b2663eb4f256f (patch) | |
tree | 434897421ab10c36557de809c817274a09202d71 | |
parent | 99f36683a4f2c218d52922ae7c2a0c0b3f2890ed (diff) | |
download | frameworks_base-a5b58df09753bd13744381c54c8b2663eb4f256f.zip frameworks_base-a5b58df09753bd13744381c54c8b2663eb4f256f.tar.gz frameworks_base-a5b58df09753bd13744381c54c8b2663eb4f256f.tar.bz2 |
Allow clearing out the source bounds
Change-Id: Id49f4a3ac397cf17c5704d298b6a9a376f6a5c23
-rw-r--r-- | core/java/android/content/Intent.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/java/android/content/Intent.java b/core/java/android/content/Intent.java index 2be5153..45a42e4 100644 --- a/core/java/android/content/Intent.java +++ b/core/java/android/content/Intent.java @@ -57,8 +57,8 @@ import java.util.Set; * * <p>An Intent provides a facility for performing late runtime binding between the code in * different applications. Its most significant use is in the launching of activities, where it - * can be thought of as the glue between activities. It is basically a passive data structure - * holding an abstract description of an action to be performed.</p> + * can be thought of as the glue between activities. It is basically a passive data structure + * holding an abstract description of an action to be performed.</p> * * <div class="special reference"> * <h3>Developer Guides</h3> @@ -2566,7 +2566,7 @@ public class Intent implements Parcelable, Cloneable { */ public static final String EXTRA_LOCAL_ONLY = "android.intent.extra.LOCAL_ONLY"; - + // --------------------------------------------------------------------- // --------------------------------------------------------------------- // Intent flags (see mFlags variable). @@ -5291,7 +5291,7 @@ public class Intent implements Parcelable, Cloneable { if (r != null) { mSourceBounds = new Rect(r); } else { - r = null; + mSourceBounds = null; } } |