Merge "Remove unused InputMethodInfo#isEncryptionAware()." into nyc-dev am: 263e21f12c

am: bda1ce850f

* commit 'bda1ce850f9958cf670205fbe8aff35e23717a29':
  Remove unused InputMethodInfo#isEncryptionAware().
This commit is contained in:
Yohei Yukawa
2016-02-20 01:10:39 +00:00
committed by android-build-merger

View File

@@ -428,18 +428,6 @@ public final class InputMethodInfo implements Parcelable {
}
}
/**
* @return {@code true} if the {@link android.inputmethodservice.InputMethodService} is marked
* to be Encryption-Aware.
* @hide
*/
public boolean isEncryptionAware() {
if (mService == null || mService.serviceInfo == null) {
return false;
}
return mService.serviceInfo.encryptionAware;
}
public void dump(Printer pw, String prefix) {
pw.println(prefix + "mId=" + mId
+ " mSettingsActivityName=" + mSettingsActivityName