code formatting

This commit is contained in:
Claudio Atzori 2024-03-26 14:53:16 +01:00
parent 94b931f7bd
commit 75551ad4ec
2 changed files with 3 additions and 3 deletions

View File

@ -90,7 +90,6 @@ public class SparkBulkTagJob {
log.info("pathMap: {}", parser.get("pathMap")); log.info("pathMap: {}", parser.get("pathMap"));
String protoMappingPath = parser.get("pathMap"); String protoMappingPath = parser.get("pathMap");
final String hdfsNameNode = parser.get("nameNode"); final String hdfsNameNode = parser.get("nameNode");
log.info("nameNode: {}", hdfsNameNode); log.info("nameNode: {}", hdfsNameNode);

View File

@ -1,3 +1,4 @@
package eu.dnetlib.dhp.bulktag.actions; package eu.dnetlib.dhp.bulktag.actions;
import java.io.Serializable; import java.io.Serializable;
@ -37,7 +38,7 @@ public class ExecSubstringAction implements Serializable {
} }
public String execSubstring() { public String execSubstring() {
return this.value.substring(Integer.valueOf(this.from), Integer.valueOf(this.to)); return this.value.substring(Integer.valueOf(this.from), Integer.valueOf(this.to));
} }
} }