Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 79daf5bc authored by Roshan Pius's avatar Roshan Pius Committed by android-build-merger
Browse files

Merge "WifiEnterpriseConfig: Fix copy constructor" am: 13886253 am: 8abe7c55 am: 95cdf963

am: 812bd82c

Change-Id: If07286f03be817075bfb0f1bdd7fb4ff07e1d5df
parents e4289331 812bd82c
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -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;
    }