Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for createIllegalStateException (0.18 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/AbstractMutationGuard.java

            if (!isMutationAllowed()) {
                throw createIllegalStateException(new DslObject(target).getPublicType().getConcreteClass(), methodName, target);
            }
        }
    
        @Override
        public <T> void assertMutationAllowed(String methodName, T target, Class<T> targetType) {
            if (!isMutationAllowed()) {
                throw createIllegalStateException(targetType, methodName, target);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 21:58:11 UTC 2018
    - 2.3K bytes
    - Viewed (0)
Back to top