Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for getPublicMethod (0.24 seconds)

  1. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ClassMap.java

         */
        private static Method getPublicMethod(Method method) {
            Class<?> clazz = method.getDeclaringClass();
    
            // Short circuit for (hopefully the majority of) cases where the declaring
            // class is public.
            if ((clazz.getModifiers() & Modifier.PUBLIC) != 0) {
                return method;
            }
    
            return getPublicMethod(clazz, method.getName(), method.getParameterTypes());
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Sat Apr 05 11:52:05 GMT 2025
    - 13.5K bytes
    - Click Count (0)
Back to Top