diff options
author | Amith Yamasani <yamasani@google.com> | 2014-05-07 10:23:44 -0700 |
---|---|---|
committer | Amith Yamasani <yamasani@google.com> | 2014-05-07 10:23:44 -0700 |
commit | 007bbc0ed332a5fb40fbca294870adf854c200dd (patch) | |
tree | 360ac1529e5f2df03d0c5d1c5cd805b74728607b | |
parent | 4297409e458646db914d78f20aef71606622ca7e (diff) | |
download | frameworks_base-007bbc0ed332a5fb40fbca294870adf854c200dd.zip frameworks_base-007bbc0ed332a5fb40fbca294870adf854c200dd.tar.gz frameworks_base-007bbc0ed332a5fb40fbca294870adf854c200dd.tar.bz2 |
Fix javadoc typo
Use @return, not @returns
Change-Id: I6c8fab2d236cf9c68c79090d3830bc3e01c8aa6f
-rw-r--r-- | core/java/android/app/admin/DevicePolicyManager.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/app/admin/DevicePolicyManager.java b/core/java/android/app/admin/DevicePolicyManager.java index b24b932..209c536 100644 --- a/core/java/android/app/admin/DevicePolicyManager.java +++ b/core/java/android/app/admin/DevicePolicyManager.java @@ -2069,7 +2069,7 @@ public class DevicePolicyManager { * @param admin Which {@link DeviceAdminReceiver} this request is associated with. * @param intent An intent matching the app(s) to be installed. All apps that resolve for this * intent will be re-enabled in the current profile. - * @returns int The number of activities that matched the intent and were installed. + * @return int The number of activities that matched the intent and were installed. */ public int enableSystemApp(ComponentName admin, Intent intent) { if (mService != null) { |