protected static boolean isHashCode()

in asm/src/main/java/org/apache/commons/proxy2/asm/ASMProxyFactory.java [420:424]


    protected static boolean isHashCode(Method method)
    {
        return "hashCode".equals(method.getName()) && Integer.TYPE.equals(method.getReturnType())
                && method.getParameterTypes().length == 0;
    }