Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrescobar2011-04-19 20:22:03 +0000
committerRyan D. Brooks2011-04-19 20:22:03 +0000
commit3e531a33701e66f7af01f4ab52e3a825f3d32dee (patch)
treeffe06de147df32bb9d4d0abfeaa0ddbd7a584824 /plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core
parent9e9d63ee0d8b87ba08d14bf1e4a1db532374c983 (diff)
downloadorg.eclipse.osee-3e531a33701e66f7af01f4ab52e3a825f3d32dee.tar.gz
org.eclipse.osee-3e531a33701e66f7af01f4ab52e3a825f3d32dee.tar.xz
org.eclipse.osee-3e531a33701e66f7af01f4ab52e3a825f3d32dee.zip
refactor: Remove WorkspaceURL
Diffstat (limited to 'plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core')
-rw-r--r--plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/artifact/WorkspaceURL.java23
1 files changed, 0 insertions, 23 deletions
diff --git a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/artifact/WorkspaceURL.java b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/artifact/WorkspaceURL.java
deleted file mode 100644
index e7fa2ad3972..00000000000
--- a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/artifact/WorkspaceURL.java
+++ /dev/null
@@ -1,23 +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:
- * Boeing - initial API and implementation
- *******************************************************************************/
-package org.eclipse.osee.framework.skynet.core.artifact;
-
-import org.eclipse.core.resources.IResource;
-
-/**
- * @author Michael S. Rodgers
- */
-public class WorkspaceURL {
- public static String getURL(IResource resource) {
- // Add only 1 "/" due to the path for the file having a preceding "/"
- return "ws:/" + resource.getFullPath().toString();
- }
-}

Back to the top