Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for addSuppressed (0.15 sec)

  1. android/guava/src/com/google/common/io/Closer.java

          }
          return new SuppressingSuppressor(addSuppressed);
        }
    
        private final Method addSuppressed;
    
        private SuppressingSuppressor(Method addSuppressed) {
          this.addSuppressed = addSuppressed;
        }
    
        @Override
        public void suppress(Closeable closeable, Throwable thrown, Throwable suppressed) {
          // ensure no exceptions from addSuppressed
          if (thrown == suppressed) {
            return;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Mar 06 15:15:46 GMT 2024
    - 11.9K bytes
    - Viewed (0)
Back to top