Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/artifact/IntroduceArtifactOperation.java')
-rw-r--r--plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/artifact/IntroduceArtifactOperation.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/artifact/IntroduceArtifactOperation.java b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/artifact/IntroduceArtifactOperation.java
index 22135632399..5934827c461 100644
--- a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/artifact/IntroduceArtifactOperation.java
+++ b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/artifact/IntroduceArtifactOperation.java
@@ -59,7 +59,7 @@ public class IntroduceArtifactOperation {
public List<Artifact> introduce(Collection<Artifact> sourceArtifacts) throws OseeCoreException {
this.sourceArtifacts = sourceArtifacts;
- destinationArtifacts = new ArrayList<Artifact>(sourceArtifacts.size());
+ destinationArtifacts = new ArrayList<>(sourceArtifacts.size());
for (Artifact sourceArtifact : sourceArtifacts) {
introduceArtifact(sourceArtifact);

Back to the top