fix(test): gson constructor missing

This commit is contained in:
ineanto 2023-10-10 13:15:06 +02:00
parent 52c7c00dd1
commit 4977e59d24
5 changed files with 27 additions and 9 deletions

View file

@ -3,6 +3,8 @@ package xyz.atnrch.nicko.config;
public class SQLDataSourceConfiguration extends DataSourceConfiguration {
private final boolean mariadb;
public SQLDataSourceConfiguration() { this(false, "", 0, "", "", true); }
public SQLDataSourceConfiguration(boolean enabled, String address, Integer port, String username, String password, boolean mariadb) {
super(enabled, address, port, username, password);
this.mariadb = mariadb;