enrichment steps #38

Merged
claudio.atzori merged 334 commits from miriam.baglioni/dnet-hadoop:master into enrichment_wfs 2020-08-11 16:40:26 +02:00
1 changed files with 2 additions and 1 deletions
Showing only changes of commit ef11593068 - Show all commits

View File

@ -2,13 +2,14 @@
package eu.dnetlib.dhp.oa.provision.model;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
public class JoinedEntity implements Serializable {
private TypedRow entity;
private List<Tuple2> links;
private List<Tuple2> links = new ArrayList<>();
public JoinedEntity() {
}