DataSourceProvider: Remove unneeded finals

Change-Id: I4d834773f6ee21e7e512fe6740351abdbceaa83c
This commit is contained in:
Hector Oswaldo Caballero
2018-08-05 09:54:55 -04:00
parent 57e2f16c8f
commit 61c3679442

View File

@@ -94,7 +94,7 @@ public class DataSourceProvider implements Provider<DataSource>, LifecycleListen
MULTI_USER
}
private DataSource open(final Config cfg, final Context context, final DataSourceType dst) {
private DataSource open(Config cfg, Context context, DataSourceType dst) {
ConfigSection dbs = new ConfigSection(cfg, DATABASE_KEY);
String driver = dbs.optional("driver");
if (Strings.isNullOrEmpty(driver)) {