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

Commit 492ed589 authored by Rubin Xu's avatar Rubin Xu
Browse files

Fix wrong condition

Bug: 28050399
Change-Id: If729ee2bcc5496b5ee381e490f72c751da04dc09
parent 20ebbb33
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -750,7 +750,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;