Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for methodParametersFromSignature (0.17 sec)

  1. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/MethodsRemovedInInternalSuperClassRule.groovy

        }
    
        private static String methodSignaturesMatch(CtMethod methodInSubClass, CtMethod method) {
            return methodParametersFromSignature(methodInSubClass) == methodParametersFromSignature(method)
                // Subclass can override method return type
                && methodInSubClass.returnType.subtypeOf(method.returnType)
        }
    
        /**
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Dec 24 14:15:15 UTC 2025
    - 4.2K bytes
    - Viewed (0)
Back to top