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

Commit 30a34ec0 authored by Tomasz Wasilczyk's avatar Tomasz Wasilczyk Committed by Gerrit Code Review
Browse files

Merge "Fix equality method implementation in BandConfig class."

parents fd810d87 dd767065
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;
        }
    }