Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for MethodKey (0.07 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/MethodSet.java

    import java.util.Objects;
    
    import static java.util.Collections.unmodifiableCollection;
    
    public class MethodSet implements Iterable<Method> {
        private final Map<MethodKey, Method> methods = new LinkedHashMap<>();
    
        public void add(Method method) {
            MethodKey key = new MethodKey(method);
            Method current = methods.get(key);
            if (current == null || shouldReplace(current, method)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top