Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for findHolderByType (0.11 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/ExtensionsStorage.java

        }
    
        @Nullable
        public <T> T findByType(TypeOf<T> type) {
            ExtensionHolder<T> found = findHolderByType(type);
            return found != null ? found.get() : null;
        }
    
        private <T> ExtensionHolder<T> getHolderByType(TypeOf<T> type) {
            ExtensionHolder<T> found = findHolderByType(type);
            if (found != null) {
                return found;
            }
            throw new UnknownDomainObjectException(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 17 11:25:34 UTC 2023
    - 6.1K bytes
    - Viewed (0)
Back to top