Skip to content

Commit

Permalink
extractNoteFromXMLComment fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hylstonnb committed Aug 24, 2023
1 parent 77d8c3c commit 1768b6b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ protected void extractNoteFromXMLCommentInSkeletonIfNone(TextUnit textUnit) {

String skeleton = textUnit.getSkeleton().toString();

if (textUnit.getProperty(NoteAnnotation.LOC_NOTE) == null) {
if (textUnitUtils.getNote(textUnit) == null) {
String note = getNoteFromXMLCommentsInSkeleton(skeleton);
if (note != null) {
textUnitUtils.setNote(textUnit, note);
Expand Down

0 comments on commit 1768b6b

Please sign in to comment.