private void foreachSession()

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


  private void foreachSession(Consumer<Path> sessionPath) {
    try (DirectoryStream<Path> dirStream = sessionDirectoryStream()) {
      dirStream.forEach(sessionPath);
    } catch (IOException e) {
      log.atSevere().withCause(e).log("Cannot list files in cache %s", websessionsDir);
    }
  }