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

Commit 13886253 authored by Roshan Pius's avatar Roshan Pius Committed by Gerrit Code Review
Browse files

Merge "WifiEnterpriseConfig: Fix copy constructor"

parents 6902285a 9709b8b3
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;
    }