diff options
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.explorer')
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.emf.cdo.explorer/src/org/eclipse/emf/cdo/internal/explorer/checkouts/OfflineCDOCheckout.java b/plugins/org.eclipse.emf.cdo.explorer/src/org/eclipse/emf/cdo/internal/explorer/checkouts/OfflineCDOCheckout.java index b01a1b018e..98fa3387ff 100644 --- a/plugins/org.eclipse.emf.cdo.explorer/src/org/eclipse/emf/cdo/internal/explorer/checkouts/OfflineCDOCheckout.java +++ b/plugins/org.eclipse.emf.cdo.explorer/src/org/eclipse/emf/cdo/internal/explorer/checkouts/OfflineCDOCheckout.java @@ -230,7 +230,7 @@ public class OfflineCDOCheckout extends CDOCheckoutImpl dataSource.setURL("jdbc:h2:" + dbPrefix); Map<String, String> props = new HashMap<String, String>(); - props.put(IMappingStrategy.PROP_QUALIFIED_NAMES, "true"); + props.put(IMappingStrategy.Props.QUALIFIED_NAMES, "true"); IMappingStrategy mappingStrategy = CDODBUtil.createHorizontalMappingStrategy(true, true, false); mappingStrategy.setProperties(props); diff --git a/plugins/org.eclipse.emf.cdo.explorer/src/org/eclipse/emf/cdo/internal/explorer/repositories/LocalCDORepository.java b/plugins/org.eclipse.emf.cdo.explorer/src/org/eclipse/emf/cdo/internal/explorer/repositories/LocalCDORepository.java index 977535c7d9..6f7ba1404d 100644 --- a/plugins/org.eclipse.emf.cdo.explorer/src/org/eclipse/emf/cdo/internal/explorer/repositories/LocalCDORepository.java +++ b/plugins/org.eclipse.emf.cdo.explorer/src/org/eclipse/emf/cdo/internal/explorer/repositories/LocalCDORepository.java @@ -161,7 +161,7 @@ public class LocalCDORepository extends CDORepositoryImpl protected Map<String, String> getMappingStrategyProperties() { Map<String, String> props = new HashMap<String, String>(); - props.put(IMappingStrategy.PROP_QUALIFIED_NAMES, "true"); + props.put(IMappingStrategy.Props.QUALIFIED_NAMES, "true"); props.put(CDODBUtil.PROP_COPY_ON_BRANCH, "true"); return props; } |