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

Commit 5acbf708 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

Change-Id: I15d46cb69410efdc369d628f1681a880c1420d9d
parents 6512f5eb 30a34ec0
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;
        }
    }