(self)
| 859 | |
| 860 | @property |
| 861 | def chunks(self): |
| 862 | if self._chunks is None: |
| 863 | self._chunks = build_chunkindex_from_repo(self.repository, cache_immediately=True) |
| 864 | return self._chunks |
| 865 | |
| 866 | def seen_chunk(self, id, size=None): |
| 867 | entry = self.chunks.get(id) |
nothing calls this directly
no test coverage detected