in src/main/java/com/googlesource/gerrit/plugins/websession/flatfile/FlatFileWebSessionCache.java [220:226]
private void deleteFile(Path path) {
try {
Files.deleteIfExists(path);
} catch (IOException e) {
log.atSevere().withCause(e).log("Error trying to delete %s from %s", path, websessionsDir);
}
}