srowen commented on a change in pull request #26911: Remove usage of Guava that
breaks in 27; replace with workalikes
URL: https://github.com/apache/spark/pull/26911#discussion_r358413828
##########
File path:
common/kvstore/src/test/java/org/apache/spark/util/kvstore/CustomType1.java
##########
@@ -52,12 +50,7 @@ public int hashCode() {
@Override
public String toString() {
- return Objects.toStringHelper(this)
- .add("key", key)
- .add("id", id)
- .add("name", name)
- .add("num", num)
- .toString();
+ return "CustomType1[key=" + key + ",id=" + id + ",name=" + name + ",num="
+ num;
Review comment:
(Can't use Apache Commons Lang3 here.)
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]