summaryrefslogtreecommitdiff
path: root/support/texlab/crates/base-db/src/diagnostics/bib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'support/texlab/crates/base-db/src/diagnostics/bib.rs')
-rw-r--r--support/texlab/crates/base-db/src/diagnostics/bib.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/support/texlab/crates/base-db/src/diagnostics/bib.rs b/support/texlab/crates/base-db/src/diagnostics/bib.rs
index f931a43c51..67fcf412ad 100644
--- a/support/texlab/crates/base-db/src/diagnostics/bib.rs
+++ b/support/texlab/crates/base-db/src/diagnostics/bib.rs
@@ -41,8 +41,6 @@ fn analyze_entry(document: &mut Document, entry: bibtex::Entry) {
range: TextRange::empty(entry.syntax().text_range().end()),
code: ErrorCode::ExpectingRCurly,
});
-
- return;
}
}
@@ -63,7 +61,5 @@ fn analyze_field(document: &mut Document, field: bibtex::Field) {
range: field.name_token().unwrap().text_range(),
code,
});
-
- return;
}
}