Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.orcs.db/src/org/eclipse/osee/orcs/db/internal/resource/AttributeProvider.java')
-rw-r--r--plugins/org.eclipse.osee.orcs.db/src/org/eclipse/osee/orcs/db/internal/resource/AttributeProvider.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.orcs.db/src/org/eclipse/osee/orcs/db/internal/resource/AttributeProvider.java b/plugins/org.eclipse.osee.orcs.db/src/org/eclipse/osee/orcs/db/internal/resource/AttributeProvider.java
index 5dbe5c45fb5..c1247c3d088 100644
--- a/plugins/org.eclipse.osee.orcs.db/src/org/eclipse/osee/orcs/db/internal/resource/AttributeProvider.java
+++ b/plugins/org.eclipse.osee.orcs.db/src/org/eclipse/osee/orcs/db/internal/resource/AttributeProvider.java
@@ -51,8 +51,8 @@ public class AttributeProvider implements IResourceProvider {
}
public void start() throws OseeCoreException {
- binaryDataPath = preferences.getValue(ResourceConstants.BINARY_DATA_PATH);
- attributeDataPath = binaryDataPath + File.separator + ResourceConstants.RESOURCE_PROTOCOL + File.separator;
+ binaryDataPath = ResourceConstants.getBinaryDataPath(preferences);
+ attributeDataPath = ResourceConstants.getAttributeDataPath(preferences);
isInitialized = true;
}

Back to the top