Skip to content

Commit 29e6131

Browse files
authoredApr 20, 2017
Merge pull request #2774 from JabRef/fix-annotation-npe
Fixes #2766 If file is not found annotations might be null
2 parents a9e2066 + 9b9b3c4 commit 29e6131

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/main/java/org/jabref/gui/entryeditor/FileAnnotationTab.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ private void addAnnotations() {
127127
*/
128128
private void updateShownAnnotations(List<FileAnnotation> annotations) {
129129
listModel.clear();
130-
if (annotations.isEmpty()) {
130+
if (annotations == null || annotations.isEmpty()) {
131131
listModel.addElement(new FileAnnotation("", LocalDateTime.now(), 0, Localization.lang("File has no attached annotations"), NONE, Optional.empty()));
132132
} else {
133133
Comparator<FileAnnotation> byPage = Comparator.comparingInt(FileAnnotation::getPage);

0 commit comments

Comments
 (0)
Please sign in to comment.