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/utility/CsvArtifact.java')
-rw-r--r--plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/utility/CsvArtifact.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/utility/CsvArtifact.java b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/utility/CsvArtifact.java
index 205dacef9e6..168d9d4960a 100644
--- a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/utility/CsvArtifact.java
+++ b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/utility/CsvArtifact.java
@@ -84,7 +84,7 @@ public class CsvArtifact {
}
public List<List<String>> getRows(boolean ignoreHeaderRow) throws OseeCoreException {
- List<List<String>> rows = new ArrayList<List<String>>();
+ List<List<String>> rows = new ArrayList<>();
String csvData = getCsvData();
String[] csvLines = csvData.split("\n");
@@ -92,7 +92,7 @@ public class CsvArtifact {
for (String csvLine : csvLines) {
if ((ignoreHeaderRow && rowIndex > 0) || !ignoreHeaderRow) {
String[] values = csvLine.split(",");
- List<String> row = new ArrayList<String>();
+ List<String> row = new ArrayList<>();
for (String value : values) {
value = value.trim();
row.add(value);

Back to the top