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

Commit 41847fab authored by Rubin Xu's avatar Rubin Xu Committed by android-build-merger
Browse files

Fix wrong condition am: 492ed589

am: f5c0a55d

* commit 'f5c0a55d':
  Fix wrong condition

Change-Id: I677d5bed9d21dfc502897f580268f718505d1931
parents ab25de04 f5c0a55d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -719,7 +719,7 @@ public class WifiEnterpriseConfig implements Parcelable {
     * Get CA certificates.
     */
    @Nullable public X509Certificate[] getCaCertificates() {
        if (mCaCerts != null || mCaCerts.length > 0) {
        if (mCaCerts != null && mCaCerts.length > 0) {
            return mCaCerts;
        } else {
            return null;