Upgrade to google-java-format 1.5

Change-Id: I0c72f6c4bc0d0a93605240c2d427c80751b6ccc8
This commit is contained in:
David Pursehouse
2018-04-18 10:36:46 +02:00
parent cd80425b54
commit 6a1cfd20c9
18 changed files with 37 additions and 32 deletions

View File

@@ -41,7 +41,8 @@ class MySql extends BaseDataSourceType {
b.append(port(dbs.optional("port")));
b.append("/");
b.append(dbs.required("database"));
// See https://stackoverflow.com/questions/42084633/table-name-pattern-can-not-be-null-or-empty-in-java
// See
// https://stackoverflow.com/questions/42084633/table-name-pattern-can-not-be-null-or-empty-in-java
b.append("?nullNamePatternMatchesAll=true");
return b.toString();
}