Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.tests.db/src/org/eclipse/emf/cdo/tests/db/DBConfig.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.tests.db/src/org/eclipse/emf/cdo/tests/db/DBConfig.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.emf.cdo.tests.db/src/org/eclipse/emf/cdo/tests/db/DBConfig.java b/plugins/org.eclipse.emf.cdo.tests.db/src/org/eclipse/emf/cdo/tests/db/DBConfig.java
index a2df5aa31f..6a98d83bc0 100644
--- a/plugins/org.eclipse.emf.cdo.tests.db/src/org/eclipse/emf/cdo/tests/db/DBConfig.java
+++ b/plugins/org.eclipse.emf.cdo.tests.db/src/org/eclipse/emf/cdo/tests/db/DBConfig.java
@@ -187,7 +187,7 @@ public abstract class DBConfig extends RepositoryConfig
DataSource dataSource = createDataSource(repoName);
IDBConnectionProvider connectionProvider = dbAdapter.createConnectionProvider(dataSource);
- Map<String, String> props = new HashMap<String, String>();
+ Map<String, String> props = new HashMap<>();
// props.put(IDBStore.Props.ID_COLUMN_LENGTH, "66");
return CDODBUtil.createStore(mappingStrategy, dbAdapter, connectionProvider, props);
@@ -195,7 +195,7 @@ public abstract class DBConfig extends RepositoryConfig
protected Map<String, String> createMappingStrategyProperties()
{
- Map<String, String> props = new HashMap<String, String>();
+ Map<String, String> props = new HashMap<>();
props.put(IMappingStrategy.Props.QUALIFIED_NAMES, "true");
props.put(IMappingStrategy.Props.FORCE_INDEXES, "XREF");
props.put(CDODBUtil.PROP_COPY_ON_BRANCH, Boolean.toString(copyOnBranch));

Back to the top