removed entities added for the pid graph dump

This commit is contained in:
Miriam Baglioni 2020-11-04 17:31:24 +01:00
parent e9d948786d
commit f45c23316f
1 changed files with 0 additions and 23 deletions

View File

@ -1,23 +0,0 @@
package eu.dnetlib.dhp.schema.dump.pidgraph;
import java.io.Serializable;
public class Entity implements Serializable {
private String id;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public static Entity newInstance(String id) {
Entity entity = new Entity();
entity.id = id;
return entity;
}
}