diff options
author | Adam Powell <adamp@google.com> | 2012-06-11 20:12:56 -0700 |
---|---|---|
committer | Adam Powell <adamp@google.com> | 2012-06-11 20:12:56 -0700 |
commit | 71c69897ad0a55d590698bfa399bfe99c763b9db (patch) | |
tree | 326742c432bb411be1d444b4830c38fda2af9804 | |
parent | ae20ae1a8aaa013813c356ae1d9541ca7ff020ae (diff) | |
download | frameworks_base-71c69897ad0a55d590698bfa399bfe99c763b9db.zip frameworks_base-71c69897ad0a55d590698bfa399bfe99c763b9db.tar.gz frameworks_base-71c69897ad0a55d590698bfa399bfe99c763b9db.tar.bz2 |
Fix docs
Change-Id: If0215c02abf419d14f28574b751c9dfc2f27bcbe
-rw-r--r-- | media/java/android/media/MediaRouter.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/media/java/android/media/MediaRouter.java b/media/java/android/media/MediaRouter.java index ec8efee..7c74f0a 100644 --- a/media/java/android/media/MediaRouter.java +++ b/media/java/android/media/MediaRouter.java @@ -629,7 +629,7 @@ public class MediaRouter { * Set an icon that will be used to represent this route. * The system may use this icon in picker UIs or similar. * - * @param icon Resource ID of an icon drawable to use to represent this route + * @param resId Resource ID of an icon drawable to use to represent this route */ public void setIconResource(int resId) { setIconDrawable(sStatic.mResources.getDrawable(resId)); @@ -756,7 +756,7 @@ public class MediaRouter { * Set an icon that will be used to represent this group. * The system may use this icon in picker UIs or similar. * - * @param icon Resource ID of an icon drawable to use to represent this group + * @param resId Resource ID of an icon drawable to use to represent this group */ public void setIconResource(int resId) { setIconDrawable(sStatic.mResources.getDrawable(resId)); |