Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for EmptyCharSource (0.09 sec)

  1. guava/src/com/google/common/io/CharSource.java

            throw closer.rethrow(e);
          } finally {
            closer.close();
          }
        }
      }
    
      private static final class EmptyCharSource extends StringCharSource {
    
        private static final EmptyCharSource INSTANCE = new EmptyCharSource();
    
        private EmptyCharSource() {
          super("");
        }
    
        @Override
        public String toString() {
          return "CharSource.empty()";
        }
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 14:20:11 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top