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/importing/RoughArtifact.java')
-rw-r--r--plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/importing/RoughArtifact.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/importing/RoughArtifact.java b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/importing/RoughArtifact.java
index 95971600c5b..6ee81915cc8 100644
--- a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/importing/RoughArtifact.java
+++ b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/importing/RoughArtifact.java
@@ -40,7 +40,7 @@ public class RoughArtifact {
public RoughArtifact(RoughArtifactKind roughArtifactKind, String name) {
this.attributes = new RoughAttributeSet();
- this.children = new ArrayList<RoughArtifact>();
+ this.children = new ArrayList<>();
this.roughArtifactKind = roughArtifactKind;
setName(name);
}
@@ -172,7 +172,7 @@ public class RoughArtifact {
}
public Collection<RoughArtifact> getDescendants() {
- Collection<RoughArtifact> decendants = new ArrayList<RoughArtifact>();
+ Collection<RoughArtifact> decendants = new ArrayList<>();
for (RoughArtifact child : getChildren()) {
if (equals(child.roughParent)) {
decendants.add(child);

Back to the top