- final SendGroupUpdateAction that = (SendGroupUpdateAction) o;
- return address.equals(that.address) &&
- Arrays.equals(groupId, that.groupId);
+
+ final SendGroupInfoAction that = (SendGroupInfoAction) o;
+
+ if (!address.equals(that.address)) return false;
+ return groupId.equals(that.groupId);