Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for toUncheckedThrowingFactory (0.32 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationLogger.java

                maybeEnable();
            }
        }
    
        public static <T, E extends Exception> T whileDisabledThrowing(ThrowingFactory<T, E> factory) {
            disable();
            try {
                return toUncheckedThrowingFactory(factory).create();
            } finally {
                maybeEnable();
            }
        }
    
        public static <E extends Exception> void whileDisabledThrowing(ThrowingRunnable<E> runnable) {
            disable();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top