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

Commit 396a9da2 authored by Rubin Xu's avatar Rubin Xu Committed by android-build-merger
Browse files

Fix wrong condition am: 492ed589 am: f5c0a55d

am: 41847fab

* commit '41847fab':
  Fix wrong condition

Change-Id: Ib52780dc1dce93075cc0b4f7450c2dfa99034f1d
parents b4d16644 41847fab
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;