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

Commit 812bd82c 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

Change-Id: I0a09a2f0d1a2e49d928bf42e165a4586c501d4f0
parents 3d588207 95cdf963
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;
    }