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

Commit 8377a4fd authored by Tim Murray's avatar Tim Murray Committed by Gerrit Code Review
Browse files

Merge "Fix null check for BaseObj.equals."

parents dd72b6e7 78214c95
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -181,6 +181,10 @@ public class BaseObj {
        if (this == obj)
            return true;

        if (obj == null) {
            return false;
        }

        if (getClass() != obj.getClass()) {
            return false;
        }