Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyan D. Brooks2015-11-04 19:43:04 +0000
committerRyan D. Brooks2015-11-04 19:43:04 +0000
commitfb37546d706949275aaa8ccea1b6cd83a979428f (patch)
treeb94f9c4a78961933eab8af664d86671b149a41d6 /plugins/org.eclipse.osee.framework.core.dsl.integration
parent4fff9b74f7e88cd20a1113533f3f82af1a5a72a2 (diff)
downloadorg.eclipse.osee-fb37546d706949275aaa8ccea1b6cd83a979428f.tar.gz
org.eclipse.osee-fb37546d706949275aaa8ccea1b6cd83a979428f.tar.xz
org.eclipse.osee-fb37546d706949275aaa8ccea1b6cd83a979428f.zip
refactor: Improve HasBranch type hierarchy
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.dsl.integration')
-rw-r--r--plugins/org.eclipse.osee.framework.core.dsl.integration/src/org/eclipse/osee/framework/core/dsl/integration/ArtifactDataProvider.java7
1 files changed, 1 insertions, 6 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.dsl.integration/src/org/eclipse/osee/framework/core/dsl/integration/ArtifactDataProvider.java b/plugins/org.eclipse.osee.framework.core.dsl.integration/src/org/eclipse/osee/framework/core/dsl/integration/ArtifactDataProvider.java
index 9292ce9f870..dda52d8b861 100644
--- a/plugins/org.eclipse.osee.framework.core.dsl.integration/src/org/eclipse/osee/framework/core/dsl/integration/ArtifactDataProvider.java
+++ b/plugins/org.eclipse.osee.framework.core.dsl.integration/src/org/eclipse/osee/framework/core/dsl/integration/ArtifactDataProvider.java
@@ -11,10 +11,8 @@
package org.eclipse.osee.framework.core.dsl.integration;
import java.util.Collection;
-import org.eclipse.osee.framework.core.data.HasBranch;
import org.eclipse.osee.framework.core.data.IArtifactToken;
import org.eclipse.osee.framework.core.data.IAttributeType;
-import org.eclipse.osee.framework.core.data.IOseeBranch;
import org.eclipse.osee.framework.core.model.IBasicArtifact;
import org.eclipse.osee.framework.core.model.type.ArtifactType;
import org.eclipse.osee.framework.core.model.type.RelationType;
@@ -25,10 +23,7 @@ import org.eclipse.osee.framework.jdk.core.type.OseeCoreException;
*/
public interface ArtifactDataProvider {
- public static interface ArtifactProxy extends IArtifactToken, HasBranch {
-
- @Override
- IOseeBranch getBranch();
+ public static interface ArtifactProxy extends IArtifactToken {
@Override
String getName();

Back to the top