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

Commit dd767065 authored by Tomasz Wasilczyk's avatar Tomasz Wasilczyk
Browse files

Fix equality method implementation in BandConfig class.

Test: instrumentation (in master branch)
Bug: b/36863239
Change-Id: I2f3b68ba3fac75b849ee99dc06d0a13478168b7e
parent e08bd750
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;
        }
    }