protected static boolean isEqualsMethod()

in asm/src/main/java/org/apache/commons/proxy2/asm/ASMProxyFactory.java [426:430]


    protected static boolean isEqualsMethod(Method method)
    {
        return "equals".equals(method.getName()) && Boolean.TYPE.equals(method.getReturnType())
                && method.getParameterTypes().length == 1 && Object.class.equals(method.getParameterTypes()[0]);
    }