summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Robert Carr <racarr@google.com> 2015-12-04 15:18:40 -0800
committer Robert Carr <racarr@google.com> 2015-12-04 15:18:40 -0800
commit12701f64d93c4b2e11b09b30f7dc9dc96d51150f (patch)
treed8fdba468f5dff809dc8236181aef0b1a1ff0608
parent75b3720c50752d988d361a57b2d32f8baaee3e28 (diff)
Fix build by making docs match params.
Change-Id: Id5bb5161514be372b709ecbb5d56e86554d3ec64
-rw-r--r--core/java/android/view/View.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/view/View.java b/core/java/android/view/View.java
index 49b21f93f803..6dd87a035d23 100644
--- a/core/java/android/view/View.java
+++ b/core/java/android/view/View.java
@@ -18572,7 +18572,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback,
* must be an array of two integers. After the method returns, the array
* contains the x and y location in that order.</p>
*
- * @param location an array of two integers in which to hold the coordinates
+ * @param outLocation an array of two integers in which to hold the coordinates
*/
public void getLocationOnScreen(@Size(2) int[] outLocation) {
getLocationInWindow(outLocation);
@@ -18589,7 +18589,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback,
* must be an array of two integers. After the method returns, the array
* contains the x and y location in that order.</p>
*
- * @param outWindowSpace an array of two integers in which to hold the coordinates
+ * @param outLocation an array of two integers in which to hold the coordinates
*/
public void getLocationInWindow(@Size(2) int[] outLocation) {
if (outLocation == null || outLocation.length < 2) {