Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorddunne2010-01-04 20:17:52 +0000
committerddunne2010-01-04 20:17:52 +0000
commitf75a6059fb3dbd3cebfa59e53eabf7d7371502ee (patch)
tree8a79c1929a451ede895a5b78220b22be6edf3499
parentc4d280b18ede7f60ff6c090732efe53d169176a6 (diff)
downloadorg.eclipse.osee-f75a6059fb3dbd3cebfa59e53eabf7d7371502ee.tar.gz
org.eclipse.osee-f75a6059fb3dbd3cebfa59e53eabf7d7371502ee.tar.xz
org.eclipse.osee-f75a6059fb3dbd3cebfa59e53eabf7d7371502ee.zip
add fix for incorrect artifact types
-rw-r--r--org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/artifact/ChangeArtifactType.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/artifact/ChangeArtifactType.java b/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/artifact/ChangeArtifactType.java
index d2e89a8adea..3cefc9a3497 100644
--- a/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/artifact/ChangeArtifactType.java
+++ b/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/artifact/ChangeArtifactType.java
@@ -44,7 +44,7 @@ public class ChangeArtifactType {
* @param artifacts
* @param artifactType
*/
- public static void changeArtifactType(Collection<Artifact> artifacts, ArtifactType artifactType) throws OseeCoreException {
+ public static void changeArtifactType(Collection<? extends Artifact> artifacts, ArtifactType artifactType) throws OseeCoreException {
if (artifacts.isEmpty()) {
throw new OseeArgumentException("The artifact list can not be empty");
}

Back to the top