forked from D-Net/dnet-hadoop
replaced null as return value with a more safe empty string
This commit is contained in:
parent
c295c71ca0
commit
c3114ba0ae
|
@ -167,6 +167,6 @@ public class SparkGenEnrichedOrcidWorks {
|
||||||
return name.getAsString();
|
return name.getAsString();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return null;
|
return new String("");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue