mirror of
https://github.com/taoneill/war.git
synced 2025-02-01 12:11:19 +01:00
Fix null string bug
Thanks @smurfofsmurf
This commit is contained in:
parent
c7e33dd1ca
commit
b0fadd4459
@ -66,7 +66,7 @@ public class MySQLConfig {
|
|||||||
* @return deletion WHERE clause or empty string.
|
* @return deletion WHERE clause or empty string.
|
||||||
*/
|
*/
|
||||||
public String getLoggingDeleteClause() {
|
public String getLoggingDeleteClause() {
|
||||||
return section.getString("logging.autoclear");
|
return section.getString("logging.autoclear", "");
|
||||||
}
|
}
|
||||||
|
|
||||||
private String getJDBCUrl() {
|
private String getJDBCUrl() {
|
||||||
|
Loading…
Reference in New Issue
Block a user