[SFG-IF] fix issue in name of parameter
This commit is contained in:
parent
c2ecfdd6cb
commit
546684ae68
|
@ -297,7 +297,7 @@ public class DumpResearchProduct implements Serializable {
|
||||||
|
|
||||||
private static void addJournalHostedbyId(Tuple2<Publication, Row> next, ArrayList<String> journalHbIds) {
|
private static void addJournalHostedbyId(Tuple2<Publication, Row> next, ArrayList<String> journalHbIds) {
|
||||||
if (Optional.ofNullable(next._2()).isPresent())
|
if (Optional.ofNullable(next._2()).isPresent())
|
||||||
journalHbIds.add(next._2().getAs("jopurnalHostedBy"));
|
journalHbIds.add(next._2().getAs("journalHostedBy"));
|
||||||
}
|
}
|
||||||
|
|
||||||
@NotNull
|
@NotNull
|
||||||
|
|
Loading…
Reference in New Issue