Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrescobar2011-04-19 17:51:32 +0000
committerRyan D. Brooks2011-04-19 17:51:32 +0000
commit714aeb21a164ce1e7f367b8bf85b49533dd3e539 (patch)
tree3c9d877e59e4878f9050c07b8468105a95260691 /plugins/org.eclipse.osee.framework.skynet.core
parent75eefe18ead111ab46b3978abd124f5ee35adcf8 (diff)
downloadorg.eclipse.osee-714aeb21a164ce1e7f367b8bf85b49533dd3e539.tar.gz
org.eclipse.osee-714aeb21a164ce1e7f367b8bf85b49533dd3e539.tar.xz
org.eclipse.osee-714aeb21a164ce1e7f367b8bf85b49533dd3e539.zip
refactor: Remove unused IStyleSheetArtifact
Diffstat (limited to 'plugins/org.eclipse.osee.framework.skynet.core')
-rw-r--r--plugins/org.eclipse.osee.framework.skynet.core/META-INF/MANIFEST.MF1
-rw-r--r--plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/artifact/format/BaseStyleSheetArtifact.java28
-rw-r--r--plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/artifact/format/IStyleSheetArtifact.java21
3 files changed, 0 insertions, 50 deletions
diff --git a/plugins/org.eclipse.osee.framework.skynet.core/META-INF/MANIFEST.MF b/plugins/org.eclipse.osee.framework.skynet.core/META-INF/MANIFEST.MF
index f2c0a22846a..00f15280c98 100644
--- a/plugins/org.eclipse.osee.framework.skynet.core/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.osee.framework.skynet.core/META-INF/MANIFEST.MF
@@ -20,7 +20,6 @@ Export-Package: org.eclipse.osee.framework.skynet.core,
org.eclipse.osee.framework.skynet.core.artifact,
org.eclipse.osee.framework.skynet.core.artifact.annotation,
org.eclipse.osee.framework.skynet.core.artifact.factory,
- org.eclipse.osee.framework.skynet.core.artifact.format,
org.eclipse.osee.framework.skynet.core.artifact.operation,
org.eclipse.osee.framework.skynet.core.artifact.revert,
org.eclipse.osee.framework.skynet.core.artifact.search,
diff --git a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/artifact/format/BaseStyleSheetArtifact.java b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/artifact/format/BaseStyleSheetArtifact.java
deleted file mode 100644
index 607b8dfb752..00000000000
--- a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/artifact/format/BaseStyleSheetArtifact.java
+++ /dev/null
@@ -1,28 +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.format;
-
-/**
- * Provides style information for word formatted content.
- *
- * @author Jeff C. Phillips
- */
-public class BaseStyleSheetArtifact implements IStyleSheetArtifact {
-
- public BaseStyleSheetArtifact() {
- super();
- }
-
- @Override
- public String getStyle() {
- return null;
- }
-}
diff --git a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/artifact/format/IStyleSheetArtifact.java b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/artifact/format/IStyleSheetArtifact.java
deleted file mode 100644
index 38591eafd64..00000000000
--- a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/artifact/format/IStyleSheetArtifact.java
+++ /dev/null
@@ -1,21 +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.format;
-
-/**
- * Interface so style sheets can provide style information for word renders.
- *
- * @author Jeff C. Phillips
- */
-public interface IStyleSheetArtifact {
-
- public String getStyle();
-}

Back to the top