From f2ef28d840647d2f16792313bdc22b2114a5df6a Mon Sep 17 00:00:00 2001 From: Katie McCormick Date: Tue, 26 Nov 2013 11:10:54 -0800 Subject: [PATCH] Doc updates: Javadoc fixes Change-Id: I82381056f9f13e53ab8a0525f5a53bf98674c052 --- core/java/android/app/PendingIntent.java | 4 ++-- core/java/android/hardware/SensorManager.java | 4 ++-- core/java/android/widget/ShareActionProvider.java | 2 +- graphics/java/android/graphics/ColorMatrix.java | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/core/java/android/app/PendingIntent.java b/core/java/android/app/PendingIntent.java index bdd0adbbb4362..be6f8188b981b 100644 --- a/core/java/android/app/PendingIntent.java +++ b/core/java/android/app/PendingIntent.java @@ -96,8 +96,8 @@ public final class PendingIntent implements Parcelable { public static final int FLAG_ONE_SHOT = 1<<30; /** * Flag for use with {@link #getActivity}, {@link #getBroadcast}, and - * {@link #getService}: if the described PendingIntent does not already - * exist, then simply return null instead of creating it. + * {@link #getService}: if the described PendingIntent already exists, + * then simply return null instead of creating it. */ public static final int FLAG_NO_CREATE = 1<<29; /** diff --git a/core/java/android/hardware/SensorManager.java b/core/java/android/hardware/SensorManager.java index b931313083166..8c231296028f1 100644 --- a/core/java/android/hardware/SensorManager.java +++ b/core/java/android/hardware/SensorManager.java @@ -1056,8 +1056,8 @@ public abstract class SensorManager { * is mapped. * * @param outR - * the transformed rotation matrix. inR and outR can be the same - * array, but it is not recommended for performance reason. + * the transformed rotation matrix. inR and outR should not be the same + * array. * * @return true on success. false if the input * parameters are incorrect, for instance if X and Y define the same diff --git a/core/java/android/widget/ShareActionProvider.java b/core/java/android/widget/ShareActionProvider.java index 62afd2eef1e1b..bdaaa0164ceb5 100644 --- a/core/java/android/widget/ShareActionProvider.java +++ b/core/java/android/widget/ShareActionProvider.java @@ -266,7 +266,7 @@ public class ShareActionProvider extends ActionProvider { * Intent shareIntent = new Intent(Intent.ACTION_SEND); * shareIntent.setType("image/*"); * Uri uri = Uri.fromFile(new File(getFilesDir(), "foo.jpg")); - * shareIntent.putExtra(Intent.EXTRA_STREAM, uri.toString()); + * shareIntent.putExtra(Intent.EXTRA_STREAM, uri)); * * @param shareIntent The share intent. * diff --git a/graphics/java/android/graphics/ColorMatrix.java b/graphics/java/android/graphics/ColorMatrix.java index c22cda1cbf511..e3596c80808d5 100644 --- a/graphics/java/android/graphics/ColorMatrix.java +++ b/graphics/java/android/graphics/ColorMatrix.java @@ -19,7 +19,7 @@ package android.graphics; import android.util.FloatMath; /** - * 5x4 matrix for transforming the color+alpha components of a Bitmap. + * 4x5 matrix for transforming the color+alpha components of a Bitmap. * The matrix is stored in a single array, and its treated as follows: * [ a, b, c, d, e, * f, g, h, i, j,