fix(test): gson constructor missing
This commit is contained in:
parent
52c7c00dd1
commit
4977e59d24
5 changed files with 27 additions and 9 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue