Merge "WifiEnterpriseConfig: Fix copy constructor" am: 13886253be am: 8abe7c5544 am: 95cdf96320

am: 812bd82c63

Change-Id: If07286f03be817075bfb0f1bdd7fb4ff07e1d5df
This commit is contained in:
Roshan Pius
2016-09-02 21:32:14 +00:00
committed by android-build-merger

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;
}