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

Commit 78214c95 authored by Tim Murray's avatar Tim Murray
Browse files

Fix null check for BaseObj.equals.

Change-Id: I4f060697db175cbf0b5617c1220db853bbe53f1f
parent e4dae5f2
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;
        }