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

Commit 95cdf963 authored by Roshan Pius's avatar Roshan Pius Committed by android-build-merger
Browse files

Merge "WifiEnterpriseConfig: Fix copy constructor" am: 13886253

am: 8abe7c55

Change-Id: Ia985aa9473574879425aa003f0a1d2c2aab6b3eb
parents a37cec7f 8abe7c55
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;
    }