kylixs commented on PR #561:
URL: https://github.com/apache/skywalking-java/pull/561#issuecomment-1604523565

   Should we move `hashCode `method into `XXXInterceptPoint` interface from 
`DelegateNamingResolver#computeHashCode()`?
   Something like: 
   ```java
   public interface ConstructorInterceptPoint {
   
       ElementMatcher<MethodDescription> getConstructorMatcher();
   
       String getConstructorInterceptor();
   
       static int hashCode(ConstructorInterceptPoint point) {
           return Objects.hash(point.getClass().getName(), 
point.getConstructorMatcher().toString(), point.getConstructorInterceptor());
       }
   }
   ```


-- 
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]

Reply via email to