Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ats.core.client/src/org/eclipse/osee/ats/core/client/search/AtsArtifactQuery.java')
-rw-r--r--plugins/org.eclipse.osee.ats.core.client/src/org/eclipse/osee/ats/core/client/search/AtsArtifactQuery.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/org.eclipse.osee.ats.core.client/src/org/eclipse/osee/ats/core/client/search/AtsArtifactQuery.java b/plugins/org.eclipse.osee.ats.core.client/src/org/eclipse/osee/ats/core/client/search/AtsArtifactQuery.java
index 06fc1692401..6b298856212 100644
--- a/plugins/org.eclipse.osee.ats.core.client/src/org/eclipse/osee/ats/core/client/search/AtsArtifactQuery.java
+++ b/plugins/org.eclipse.osee.ats.core.client/src/org/eclipse/osee/ats/core/client/search/AtsArtifactQuery.java
@@ -29,7 +29,7 @@ import org.eclipse.osee.framework.skynet.core.artifact.search.ArtifactQuery;
public class AtsArtifactQuery {
public static Artifact getArtifactFromId(String guidOrAtsId) throws OseeCoreException {
- List<Artifact> artifacts = new LinkedList<Artifact>();
+ List<Artifact> artifacts = new LinkedList<>();
if (GUID.isValid(guidOrAtsId)) {
artifacts.add(ArtifactQuery.getArtifactFromId(guidOrAtsId, AtsUtilCore.getAtsBranch()));
@@ -48,9 +48,9 @@ public class AtsArtifactQuery {
}
public static List<Artifact> getArtifactListFromIds(Collection<String> guidsOrAtsIds) throws OseeCoreException {
- List<Artifact> toReturn = new LinkedList<Artifact>();
- List<String> guids = new LinkedList<String>();
- List<String> atsIds = new LinkedList<String>();
+ List<Artifact> toReturn = new LinkedList<>();
+ List<String> guids = new LinkedList<>();
+ List<String> atsIds = new LinkedList<>();
for (String guidOrAtsId : guidsOrAtsIds) {
if (GUID.isValid(guidOrAtsId)) {
guids.add(guidOrAtsId);
@@ -79,8 +79,8 @@ public class AtsArtifactQuery {
}
public static List<Artifact> getArtifactListFromIds(List<Long> uuids) {
- List<Artifact> toReturn = new LinkedList<Artifact>();
- List<Integer> artIds = new LinkedList<Integer>();
+ List<Artifact> toReturn = new LinkedList<>();
+ List<Integer> artIds = new LinkedList<>();
for (Long uuid : uuids) {
artIds.add(uuid.intValue());

Back to the top