mirror of
https://github.com/taoneill/war.git
synced 2025-01-20 14:21: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.
|
||||
*/
|
||||
public String getLoggingDeleteClause() {
|
||||
return section.getString("logging.autoclear");
|
||||
return section.getString("logging.autoclear", "");
|
||||
}
|
||||
|
||||
private String getJDBCUrl() {
|
||||
|
Loading…
Reference in New Issue
Block a user