Skip to content

Commit a5b58df

Browse files
author
Daniel Lehmann
committed
Allow clearing out the source bounds
Change-Id: Id49f4a3ac397cf17c5704d298b6a9a376f6a5c23
1 parent 99f3668 commit a5b58df

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

core/java/android/content/Intent.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@
5757
*
5858
* <p>An Intent provides a facility for performing late runtime binding between the code in
5959
* different applications. Its most significant use is in the launching of activities, where it
60-
* can be thought of as the glue between activities. It is basically a passive data structure
61-
* holding an abstract description of an action to be performed.</p>
60+
* can be thought of as the glue between activities. It is basically a passive data structure
61+
* holding an abstract description of an action to be performed.</p>
6262
*
6363
* <div class="special reference">
6464
* <h3>Developer Guides</h3>
@@ -2566,7 +2566,7 @@ public static Intent createChooser(Intent target, CharSequence title) {
25662566
*/
25672567
public static final String EXTRA_LOCAL_ONLY =
25682568
"android.intent.extra.LOCAL_ONLY";
2569-
2569+
25702570
// ---------------------------------------------------------------------
25712571
// ---------------------------------------------------------------------
25722572
// Intent flags (see mFlags variable).
@@ -5291,7 +5291,7 @@ public void setSourceBounds(Rect r) {
52915291
if (r != null) {
52925292
mSourceBounds = new Rect(r);
52935293
} else {
5294-
r = null;
5294+
mSourceBounds = null;
52955295
}
52965296
}
52975297

0 commit comments

Comments
 (0)