Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrescobar2010-08-24 21:33:04 +0000
committerrescobar2010-08-24 21:33:04 +0000
commit9552aa2e6c9505f73bd5a8b786993aeac2556cfa (patch)
tree222670cc8f4a5a2ea52af38ce3525c585d69dab9 /plugins/org.eclipse.osee.framework.core.model
parent046596c4aeaac8082373a4e41a2aa6237bc75aba (diff)
downloadorg.eclipse.osee-9552aa2e6c9505f73bd5a8b786993aeac2556cfa.tar.gz
org.eclipse.osee-9552aa2e6c9505f73bd5a8b786993aeac2556cfa.tar.xz
org.eclipse.osee-9552aa2e6c9505f73bd5a8b786993aeac2556cfa.zip
Cleaned up warnings and fixed service dependencies
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.model')
-rw-r--r--plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/services/IOseeArtifactServiceProvider.java22
-rw-r--r--plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/services/IOseeCachingServiceFactoryProvider.java19
2 files changed, 0 insertions, 41 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/services/IOseeArtifactServiceProvider.java b/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/services/IOseeArtifactServiceProvider.java
deleted file mode 100644
index 968e5541ccb..00000000000
--- a/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/services/IOseeArtifactServiceProvider.java
+++ /dev/null
@@ -1,22 +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.core.services;
-
-import org.eclipse.osee.framework.core.exception.OseeCoreException;
-
-/**
- * @author Roberto E. Escobar
- */
-public interface IOseeArtifactServiceProvider {
-
- IOseeArtifactService getOseeArtifactService() throws OseeCoreException;
-
-}
diff --git a/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/services/IOseeCachingServiceFactoryProvider.java b/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/services/IOseeCachingServiceFactoryProvider.java
deleted file mode 100644
index abdfec0d3fa..00000000000
--- a/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/services/IOseeCachingServiceFactoryProvider.java
+++ /dev/null
@@ -1,19 +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.core.services;
-
-/**
- * @author Roberto E. Escobar
- */
-public interface IOseeCachingServiceFactoryProvider {
-
- IOseeCachingServiceFactory getFactory();
-}

Back to the top