1
0
Fork 0

code formatting

This commit is contained in:
Claudio Atzori 2024-05-30 10:21:18 +02:00
parent eadfd8d71d
commit a02f3f0d2b
2 changed files with 52 additions and 49 deletions

View File

@ -70,7 +70,8 @@ public class XMLIterator implements Iterator<String> {
super(); super();
this.element = element; this.element = element;
if (element.contains(",")) { if (element.contains(",")) {
elements= Arrays.stream(element.split(",")) elements = Arrays
.stream(element.split(","))
.filter(StringUtils::isNoneBlank) .filter(StringUtils::isNoneBlank)
.map(String::toLowerCase) .map(String::toLowerCase)
.collect(Collectors.toList()); .collect(Collectors.toList());
@ -182,7 +183,8 @@ public class XMLIterator implements Iterator<String> {
private boolean isCheckTag(final String tagName) { private boolean isCheckTag(final String tagName) {
if (elements != null) { if (elements != null) {
final String found =elements.stream() final String found = elements
.stream()
.filter(e -> e.equalsIgnoreCase(tagName)) .filter(e -> e.equalsIgnoreCase(tagName))
.findFirst() .findFirst()
.orElse(null); .orElse(null);

View File

@ -1,9 +1,11 @@
package eu.dnetlib.dhp.collection.plugin.file; package eu.dnetlib.dhp.collection.plugin.file;
import java.io.IOException;
import java.util.HashMap;
import java.util.Objects;
import java.util.stream.Stream;
import eu.dnetlib.dhp.collection.ApiDescriptor;
import eu.dnetlib.dhp.common.aggregation.AggregatorReport;
import eu.dnetlib.dhp.common.collection.CollectorException;
import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.FileSystem; import org.apache.hadoop.fs.FileSystem;
import org.junit.jupiter.api.*; import org.junit.jupiter.api.*;
@ -12,10 +14,9 @@ import org.mockito.junit.jupiter.MockitoExtension;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
import java.io.IOException; import eu.dnetlib.dhp.collection.ApiDescriptor;
import java.util.HashMap; import eu.dnetlib.dhp.common.aggregation.AggregatorReport;
import java.util.Objects; import eu.dnetlib.dhp.common.collection.CollectorException;
import java.util.stream.Stream;
@TestMethodOrder(MethodOrderer.OrderAnnotation.class) @TestMethodOrder(MethodOrderer.OrderAnnotation.class)
@ExtendWith(MockitoExtension.class) @ExtendWith(MockitoExtension.class)