Merge "WifiEnterpriseConfig: Fix copy constructor"

This commit is contained in:
Roshan Pius
2016-09-02 21:10:10 +00:00
committed by Gerrit Code Review

View File

@@ -155,6 +155,9 @@ public class WifiEnterpriseConfig implements Parcelable {
for (String key : source.mFields.keySet()) {
mFields.put(key, source.mFields.get(key));
}
mCaCerts = source.mCaCerts;
mClientPrivateKey = source.mClientPrivateKey;
mClientCertificate = source.mClientCertificate;
mEapMethod = source.mEapMethod;
mPhase2Method = source.mPhase2Method;
}