Fix the incorrect field name in EAP wifi network.

The field identity should not be "anonymous_identity".
This commit is contained in:
Chung-yih Wang
2009-09-22 14:54:19 +08:00
parent 2e2f6b5e68
commit 5f55d8c9d4

View File

@@ -71,7 +71,7 @@ public class WifiConfiguration implements Parcelable {
/** {@hide} */
public EnterpriseField phase2 = new EnterpriseField("phase2");
/** {@hide} */
public EnterpriseField identity = new EnterpriseField("anonymous_identity");
public EnterpriseField identity = new EnterpriseField("identity");
/** {@hide} */
public EnterpriseField anonymous_identity = new EnterpriseField("anonymous_identity");
/** {@hide} */