Skip to content

Commit

Permalink
Revert debug changes in Reporter.
Browse files Browse the repository at this point in the history
  • Loading branch information
baldimir committed Oct 9, 2024
1 parent c207bab commit 779b330
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -524,12 +524,7 @@ private static List<Vendor> loadTestResults(Parameters params, Map<String, TestC
try (Stream<String> lines = Files.lines( resultsFile[0].toPath() ) ) {
// skip the file header and load the rest
lines.forEach( l -> {
System.out.println(l);
String[] fields = l.split( ",(?=(?:[^\"]*\"[^\"]*\")*[^\"]*$)", -1);
System.out.println("Fields are: ");
for (String field : fields) {
System.out.println(field);
}
String comment = fields.length > 4 ? fields[4] : "";
String testFolder = ReportHelper.removeQuotes( fields[0] );
String testSuit = ReportHelper.removeQuotes( fields[1] );
Expand Down

0 comments on commit 779b330

Please sign in to comment.