Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.client.integration.tests/src/org/eclipse/osee/client/integration/tests/integration/skynet/core/utils/MockLinker.java')
-rw-r--r--plugins/org.eclipse.osee.client.integration.tests/src/org/eclipse/osee/client/integration/tests/integration/skynet/core/utils/MockLinker.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/org.eclipse.osee.client.integration.tests/src/org/eclipse/osee/client/integration/tests/integration/skynet/core/utils/MockLinker.java b/plugins/org.eclipse.osee.client.integration.tests/src/org/eclipse/osee/client/integration/tests/integration/skynet/core/utils/MockLinker.java
index 2ea83cece93..21e4d9543de 100644
--- a/plugins/org.eclipse.osee.client.integration.tests/src/org/eclipse/osee/client/integration/tests/integration/skynet/core/utils/MockLinker.java
+++ b/plugins/org.eclipse.osee.client.integration.tests/src/org/eclipse/osee/client/integration/tests/integration/skynet/core/utils/MockLinker.java
@@ -10,7 +10,7 @@
*******************************************************************************/
package org.eclipse.osee.client.integration.tests.integration.skynet.core.utils;
-import org.eclipse.osee.framework.core.data.IOseeBranch;
+import org.eclipse.osee.framework.core.data.BranchId;
import org.eclipse.osee.framework.core.data.IRelationType;
import org.eclipse.osee.framework.skynet.core.artifact.Artifact;
import org.eclipse.osee.framework.skynet.core.relation.RelationLink.ArtifactLinker;
@@ -32,17 +32,17 @@ public class MockLinker implements ArtifactLinker {
}
@Override
- public void updateCachedArtifact(int artId, IOseeBranch branch) {
+ public void updateCachedArtifact(int artId, BranchId branch) {
//
}
@Override
- public Artifact getArtifact(int ArtId, IOseeBranch branch) {
+ public Artifact getArtifact(int ArtId, BranchId branch) {
return null;
}
@Override
- public String getLazyArtifactName(int aArtifactId, IOseeBranch branch) {
+ public String getLazyArtifactName(int aArtifactId, BranchId branch) {
return name;
}

Back to the top