Example #1
0
 @SuppressWarnings("all")
 public boolean equals(Object o) {
   if (!(o instanceof SeenObject)) return false;
   SeenObject other = (SeenObject) o;
   return stamp.equals(other.stamp) && name.equals(other.name) && pose.equals(other.pose) && true;
 }