summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorRaphael <raphael@google.com>2010-02-11 17:01:16 -0800
committerRaphael <raphael@google.com>2010-02-11 17:01:16 -0800
commitdc2df328b3c854c7b787bf5298df0c686584125d (patch)
tree3ff464ce13acfed40007e23a37b2fdf3d5d52323 /core
parent387e8051479c9a7785947deb240d9288da831a84 (diff)
downloadframeworks_base-dc2df328b3c854c7b787bf5298df0c686584125d.zip
frameworks_base-dc2df328b3c854c7b787bf5298df0c686584125d.tar.gz
frameworks_base-dc2df328b3c854c7b787bf5298df0c686584125d.tar.bz2
Fix build.
Change-Id: Ica616f038436e3639d12064327ddd0a9fa49af8b
Diffstat (limited to 'core')
-rw-r--r--core/java/android/app/DeviceAdminInfo.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/app/DeviceAdminInfo.java b/core/java/android/app/DeviceAdminInfo.java
index 031bc8e..159fa75 100644
--- a/core/java/android/app/DeviceAdminInfo.java
+++ b/core/java/android/app/DeviceAdminInfo.java
@@ -303,8 +303,8 @@ public final class DeviceAdminInfo implements Parcelable {
* Return true if the device admin has requested that it be able to use
* the given policy control. The possible policy identifier inputs are:
* {@link #USES_POLICY_LIMIT_PASSWORD}, {@link #USES_POLICY_WATCH_LOGIN},
- * {@link #USES_POLICY_RESET_PASSWORD}, {@link #USES_POLICY_LIMIT_UNLOCK},
- * {@link #USES_POLICY_FORCE_LOCK}, {@link #USES_POLICY_WIPE_DATA}.
+ * {@link #USES_POLICY_RESET_PASSWORD}, {@link #USES_POLICY_FORCE_LOCK},
+ * {@link #USES_POLICY_WIPE_DATA}.
*/
public boolean usesPolicy(int policyIdent) {
return (mUsesPolicies & (1<<policyIdent)) != 0;