Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorgan E. Cook2016-02-08 19:52:57 +0000
committerRyan D. Brooks2016-02-08 19:52:57 +0000
commit72393d6214e6f4503bcb7afb63784504620e9320 (patch)
tree9283ca56d42c3b44a62bbc73dc1dadb25ff9de5d /plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src
parent3b9ce421a3e93d4e5dff58b29a2e68d0ce497673 (diff)
downloadorg.eclipse.osee-72393d6214e6f4503bcb7afb63784504620e9320.tar.gz
org.eclipse.osee-72393d6214e6f4503bcb7afb63784504620e9320.tar.xz
org.eclipse.osee-72393d6214e6f4503bcb7afb63784504620e9320.zip
bug: Fix casting error in ArtifactDataProviderImpl
Change-Id: I3d85d5a78c9be200a842ca10c6873161f720d5a5 Signed-off-by: Morgan E. Cook <Morgan.e.cook@boeing.com>
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src')
-rw-r--r--plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/ArtifactDataProviderImpl.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/ArtifactDataProviderImpl.java b/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/ArtifactDataProviderImpl.java
index 5ece094a041..b0b999d5267 100644
--- a/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/ArtifactDataProviderImpl.java
+++ b/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/ArtifactDataProviderImpl.java
@@ -47,7 +47,7 @@ public final class ArtifactDataProviderImpl implements ArtifactDataProvider {
final Artifact artifact = (Artifact) object;
proxy = new XArtifactProxy(artifact);
} else if (object instanceof IOseeBranch) {
- IOseeBranch branch = (Branch) object;
+ IOseeBranch branch = (IOseeBranch) object;
final Artifact artifact = OseeSystemArtifacts.getDefaultHierarchyRootArtifact(branch);
proxy = new XArtifactProxy(artifact);
}

Back to the top