If you do something like this: ``` open class Link...
# announcements
j
If you do something like this:
Copy code
open class LinkDecorator(
    private val decorated : Link
) : Link by decorated
Does the
LinkDecorator
also decorate the
hashCode
and
equals
method?