Skip to content

Commit

Permalink
cosmetics
Browse files Browse the repository at this point in the history
  • Loading branch information
lfoppiano committed Dec 30, 2024
1 parent 24faed3 commit 5b0dd4f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -923,8 +923,8 @@ else if (biblio.getE_Year().length() == 4)
tei.append("\t\t\t<abstract>\n");
}

if ((abstractText != null) && (abstractText.length() != 0)) {
if ( (biblio.getLabeledAbstract() != null) && (biblio.getLabeledAbstract().length() > 0) ) {
if (StringUtils.isNotBlank(abstractText)) {
if (StringUtils.isNotBlank(biblio.getLabeledAbstract())) {
// we have available structured abstract, which can be serialized as a full text "piece"
StringBuilder buffer = new StringBuilder();
try {
Expand Down

0 comments on commit 5b0dd4f

Please sign in to comment.