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

Commit e1b6ab42 authored by Tim Murray's avatar Tim Murray Committed by Android Git Automerger
Browse files

am fb51a430: am 8377a4fd: Merge "Fix null check for BaseObj.equals."

* commit 'fb51a430':
  Fix null check for BaseObj.equals.
parents c9f8aa0c fb51a430
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;
        }