src/main/java/com/googlesource/gerrit/plugins/verifystatus/init/DerbyInitializer.java [35:49]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void initConfig(Section configSection) {
    String path = configSection.get("database");
    Path db;
    if (path == null) {
      db = site.resolve("db").resolve("CiDB");
      configSection.set("database", db.toString());
    } else {
      db = site.resolve(path);
    }
    if (db == null) {
      throw die("database.database must be supplied for Derby");
    }
    db = db.getParent();
    FileUtil.mkdirsOrDie(db, "cannot create database.database");
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/googlesource/gerrit/plugins/verifystatus/init/H2Initializer.java [35:49]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void initConfig(Section configSection) {
    String path = configSection.get("database");
    Path db;
    if (path == null) {
      db = site.resolve("db").resolve("CiDB");
      configSection.set("database", db.toString());
    } else {
      db = site.resolve(path);
    }
    if (db == null) {
      throw die("database.database must be supplied for H2");
    }
    db = db.getParent();
    FileUtil.mkdirsOrDie(db, "cannot create database.database");
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



