Skip to content

Commit 88e8e3b

Browse files
committed
не знаю что это
1 parent 6f600be commit 88e8e3b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/java/com/github/_1c_syntax/bsl/languageserver/references/OscriptReferenceFinder.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,9 @@ public class OscriptReferenceFinder implements ReferenceFinder {
4848
public Optional<Reference> findReference(URI uri, Position position) {
4949

5050
DocumentContext document = serverContext.getDocument(uri);
51-
if (document == null || document.isComputedDataFrozen()) {
51+
if (document == null
52+
// || document.isComputedDataFrozen()
53+
) {
5254
return Optional.empty();
5355
}
5456

0 commit comments

Comments
 (0)