private Stream sessionStream()

in src/main/java/com/googlesource/gerrit/plugins/websession/flatfile/FlatFileWebSessionCache.java [236:244]


  private Stream<Path> sessionStream() {
    try {
      return StreamSupport.stream(
          sessionDirectoryStream().spliterator(), false /* single-threaded */);
    } catch (IOException e) {
      log.atSevere().withCause(e).log("Cannot traverse files in cache %s", websessionsDir);
      return Stream.empty();
    }
  }