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/loader/AttributeLoader.java')
-rw-r--r--plugins/org.eclipse.osee.orcs.db/src/org/eclipse/osee/orcs/db/internal/loader/AttributeLoader.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/org.eclipse.osee.orcs.db/src/org/eclipse/osee/orcs/db/internal/loader/AttributeLoader.java b/plugins/org.eclipse.osee.orcs.db/src/org/eclipse/osee/orcs/db/internal/loader/AttributeLoader.java
index e959cee4d06..33bbad07e5b 100644
--- a/plugins/org.eclipse.osee.orcs.db/src/org/eclipse/osee/orcs/db/internal/loader/AttributeLoader.java
+++ b/plugins/org.eclipse.osee.orcs.db/src/org/eclipse/osee/orcs/db/internal/loader/AttributeLoader.java
@@ -28,7 +28,7 @@ public class AttributeLoader {
public static interface DataProxyFactory {
- DataProxy createProxy(int proxyId, long typeUuid, String value, String uri) throws OseeCoreException;
+ DataProxy createProxy(long typeUuid, String value, String uri) throws OseeCoreException;
}
private final SqlProvider sqlProvider;
@@ -83,8 +83,7 @@ public class AttributeLoader {
String value = chStmt.getString("value");
String uri = chStmt.getString("uri");
- DataProxy proxy =
- proxyFactory.createProxy(nextAttr.getArtifactId(), nextAttr.getAttrTypeUuid(), value, uri);
+ DataProxy proxy = proxyFactory.createProxy(nextAttr.getAttrTypeUuid(), value, uri);
nextAttr.setDataProxy(proxy);
if (options.isHistorical()) {

Back to the top