Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2012-09-14 10:37:40 +0000
committerEike Stepper2012-09-14 10:37:40 +0000
commit3d4c0de327cf50fad02237a0f14cef3f61b01ed4 (patch)
treefb84106be2a9e942c588cca4a2f1bb42a91f9f3a /plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo
parentc2f161e3e9119d80d47085eace302aecbc7949bd (diff)
downloadcdo-3d4c0de327cf50fad02237a0f14cef3f61b01ed4.tar.gz
cdo-3d4c0de327cf50fad02237a0f14cef3f61b01ed4.tar.xz
cdo-3d4c0de327cf50fad02237a0f14cef3f61b01ed4.zip
Better readability
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo')
-rw-r--r--plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/mapping/horizontal/AbstractHorizontalClassMapping.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/mapping/horizontal/AbstractHorizontalClassMapping.java b/plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/mapping/horizontal/AbstractHorizontalClassMapping.java
index fb3663cd5a..99f7260037 100644
--- a/plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/mapping/horizontal/AbstractHorizontalClassMapping.java
+++ b/plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/mapping/horizontal/AbstractHorizontalClassMapping.java
@@ -144,17 +144,17 @@ public abstract class AbstractHorizontalClassMapping implements IClassMapping
private void initFeatures()
{
- EStructuralFeature[] features = CDOModelUtil.getAllPersistentFeatures(eClass);
+ EStructuralFeature[] allPersistentFeatures = CDOModelUtil.getAllPersistentFeatures(eClass);
- if (features == null)
+ if (allPersistentFeatures == null)
{
valueMappings = Collections.emptyList();
listMappings = Collections.emptyList();
}
else
{
- valueMappings = createValueMappings(features);
- listMappings = createListMappings(features);
+ valueMappings = createValueMappings(allPersistentFeatures);
+ listMappings = createListMappings(allPersistentFeatures);
}
}

Back to the top