Remove don't kill flag from CryptKeeper to stop logspam

Bug: 23500739
Change-Id: Ibf06121bf37a42853eeeaef699f5074420b2af31
This commit is contained in:
Paul Lawrence
2015-09-14 14:55:57 -07:00
parent cdf00b1640
commit 4f60679b76

View File

@@ -1023,7 +1023,6 @@ public class CryptKeeper extends Activity implements TextView.OnEditorActionList
PackageManager pm = context.getPackageManager();
ComponentName name = new ComponentName(context, CryptKeeper.class);
Log.d(TAG, "Disabling component " + name);
pm.setComponentEnabledSetting(name, PackageManager.COMPONENT_ENABLED_STATE_DISABLED,
PackageManager.DONT_KILL_APP);
pm.setComponentEnabledSetting(name, PackageManager.COMPONENT_ENABLED_STATE_DISABLED, 0);
}
}