Skip to content

Commit

Permalink
small robustness correction
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosuc3m committed Nov 16, 2024
1 parent e804d44 commit 44b3713
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ private static List<Author> buildAuthorElements(List<?> authElements)
private static List<Cite> buildCiteElements(List<?> citeElements) throws MalformedURLException
{
if (!(citeElements instanceof List<?>))
return null;
return new ArrayList<>();
List<Cite> cites = new ArrayList<>();
for (Object elem : citeElements)
{
Expand Down

0 comments on commit 44b3713

Please sign in to comment.