We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 484abe4 commit eba5cbeCopy full SHA for eba5cbe
robotcode/language_server/common/text_document.py
@@ -39,7 +39,6 @@ def __init__(
39
super().__init__()
40
41
self._lock = Lock()
42
- self._references: weakref.WeakSet[Any] = weakref.WeakSet()
43
self.document_uri = document_uri
44
self.uri = Uri(self.document_uri).normalized()
45
self.language_id = language_id
@@ -52,10 +51,6 @@ def __init__(
52
51
self._data: weakref.WeakKeyDictionary[Any, Any] = weakref.WeakKeyDictionary()
53
self.opened_in_editor = False
54
55
- @property
56
- def references(self) -> weakref.WeakSet[Any]: # pragma: no cover
57
- return self._references
58
-
59
@property
60
def version(self) -> Optional[int]:
61
return self._version
0 commit comments