Skip to content

Commit

Permalink
remove deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
mmouly committed Dec 16, 2024
1 parent b2b13fb commit fb6b026
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -232,8 +232,8 @@ public int hashCode() {
+ (operatingSystemVersion == null ? 0 : operatingSystemVersion
.hashCode())
+ (cloudServicesUsed == null ? 0 : cloudServicesUsed.hashCode())
+ new Long(startTime).hashCode()
+ new Long(sendTime).hashCode()
+ Long.valueOf(startTime).hashCode()
+ Long.valueOf(sendTime).hashCode()
+ (customerTagData == null ? 0 : customerTagData.hashCode())
+ (products == null ? 0 : products.hashCode())
+ (metrics == null ? 0 : metrics.hashCode())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@ public boolean equals(Object object) {
public int hashCode() {
return 37
+ super.hashCode()
+ new Long(startTime).hashCode()
+ new Long(endTime).hashCode()
+ Long.valueOf(startTime).hashCode()
+ Long.valueOf(endTime).hashCode()
+ (environmentType == null ? 0 : environmentType.hashCode())
+ (usageList == null ? 0 : usageList.hashCode())
+ (productSpecificData == null ? 0 : productSpecificData
Expand Down

0 comments on commit fb6b026

Please sign in to comment.