mdedetrich commented on code in PR #376:
URL:
https://github.com/apache/incubator-pekko-http/pull/376#discussion_r1433391026
##########
http/src/main/scala/org/apache/pekko/http/scaladsl/unmarshalling/Unmarshaller.scala:
##########
@@ -190,7 +202,7 @@ object Unmarshaller
override def equals(that: Any): Boolean = that match {
case that: UnsupportedContentTypeException =>
- that.canEqual(this) && that.supported == this.supported &&
that.actualContentType == this.actualContentType
+ that.canEqual(this) && super.equals(this)
Review Comment:
This will point to
`org.apache.pekko.http.javadsl.unmarshalling.Unmarshaller.UnsupportedContentTypeException`
`equals` method which does the proper structural equality check.
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]