am 4db08b04: am 9f141fbb: am fb51a430: am 8377a4fd: Merge "Fix null check for BaseObj.equals."

* commit '4db08b044dfbd01912353f0c85a43973407d98b0':
  Fix null check for BaseObj.equals.
This commit is contained in:
Tim Murray
2014-03-03 20:55:31 +00:00
committed by Android Git Automerger

View File

@@ -181,6 +181,10 @@ public class BaseObj {
if (this == obj)
return true;
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}