GUACAMOLE-76: Clean MySQL and PostgreSQL modules for consistency.

This commit is contained in:
Michael Jumper
2016-08-20 12:41:48 -07:00
parent 2e3d3c4f5f
commit 5794338b8d
2 changed files with 4 additions and 5 deletions

View File

@@ -86,7 +86,7 @@ public class MySQLAuthenticationProviderModule implements Module {
// Bind MyBatis properties
Names.bindProperties(binder, myBatisProperties);
// Bing JDBC driver properties
// Bind JDBC driver properties
binder.bind(Properties.class)
.annotatedWith(Names.named("JDBC.driverProperties"))
.toInstance(driverProperties);

View File

@@ -73,7 +73,6 @@ public class PostgreSQLAuthenticationProviderModule implements Module {
// Use UTF-8 in database
driverProperties.setProperty("characterEncoding", "UTF-8");
}
@Override
@@ -85,7 +84,7 @@ public class PostgreSQLAuthenticationProviderModule implements Module {
// Bind MyBatis properties
Names.bindProperties(binder, myBatisProperties);
// Bing JDBC driver properties
// Bind JDBC driver properties
binder.bind(Properties.class)
.annotatedWith(Names.named("JDBC.driverProperties"))
.toInstance(driverProperties);