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

Commit 3329b63b authored by Tomasz Wasilczyk's avatar Tomasz Wasilczyk Committed by android-build-merger
Browse files

Merge "Fix equality method implementation in BandConfig class." am: 30a34ec0

am: 5acbf708

Change-Id: I57e6fa0f946f25048da1524f07fa4eb13fdb2f1c
parents 2113a60b 5acbf708
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -755,8 +755,9 @@ public class RadioManager {
            if (!(obj instanceof BandConfig))
                return false;
            BandConfig other = (BandConfig) obj;
            if (mDescriptor != other.getDescriptor())
                return false;
            BandDescriptor otherDesc = other.getDescriptor();
            if ((mDescriptor == null) != (otherDesc == null)) return false;
            if (mDescriptor != null && !mDescriptor.equals(otherDesc)) return false;
            return true;
        }
    }