Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyan D. Brooks2016-10-21 18:45:06 +0000
committerdonald.g.dunne2016-10-21 18:45:06 +0000
commitaa036762c7b5e177370544f95e7577bc080692a9 (patch)
tree759f2f5ebc8059a8825c8b3a36e78b662c478cbd /plugins/org.eclipse.osee.framework.skynet.core.test
parentf974d7d5d6927da7ff7b62aca0e5b66e6aa90b04 (diff)
downloadorg.eclipse.osee-aa036762c7b5e177370544f95e7577bc080692a9.tar.gz
org.eclipse.osee-aa036762c7b5e177370544f95e7577bc080692a9.tar.xz
org.eclipse.osee-aa036762c7b5e177370544f95e7577bc080692a9.zip
refactor: Remove unnecessary ArtifactLinker
Diffstat (limited to 'plugins/org.eclipse.osee.framework.skynet.core.test')
-rw-r--r--plugins/org.eclipse.osee.framework.skynet.core.test/src/org/eclipse/osee/framework/skynet/core/mocks/MockLinker.java53
1 files changed, 0 insertions, 53 deletions
diff --git a/plugins/org.eclipse.osee.framework.skynet.core.test/src/org/eclipse/osee/framework/skynet/core/mocks/MockLinker.java b/plugins/org.eclipse.osee.framework.skynet.core.test/src/org/eclipse/osee/framework/skynet/core/mocks/MockLinker.java
deleted file mode 100644
index 9a8a310ea44..00000000000
--- a/plugins/org.eclipse.osee.framework.skynet.core.test/src/org/eclipse/osee/framework/skynet/core/mocks/MockLinker.java
+++ /dev/null
@@ -1,53 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2004, 2007 Boeing.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- *public static final CoreAttributeTypes Boeing - initial API and implementation
- *******************************************************************************/
-package org.eclipse.osee.framework.skynet.core.mocks;
-
-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;
-
-/**
- * @author Roberto E. Escobar
- */
-public class MockLinker implements ArtifactLinker {
-
- private final String name;
-
- public MockLinker(String name) {
- super();
- this.name = name;
- }
-
- public MockLinker() {
- this(null);
- }
-
- @Override
- public void updateCachedArtifact(int artId, BranchId branch) {
- //
- }
-
- @Override
- public Artifact getArtifact(int ArtId, BranchId branch) {
- return null;
- }
-
- @Override
- public String getLazyArtifactName(int aArtifactId, BranchId branch) {
- return name;
- }
-
- @Override
- public void deleteFromRelationOrder(Artifact aArtifact, Artifact bArtifact, IRelationType relationType) {
- //
- }
-} \ No newline at end of file

Back to the top