Mercurial > hg
comparison mercurial/interfaces/repository.py @ 51047:861fe9273d57
revlog: drop the _generaldelta attribute from the imanifeststorage interface
It never belonged here.
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Tue, 10 Oct 2023 10:58:28 +0200 |
parents | 14de15825253 |
children | 4a8bb136ee77 |
comparison
equal
deleted
inserted
replaced
51046:f636103c4d67 | 51047:861fe9273d57 |
---|---|
1227 | 1227 |
1228 TODO this is revlog specific and should not be exposed. | 1228 TODO this is revlog specific and should not be exposed. |
1229 """ | 1229 """ |
1230 ) | 1230 ) |
1231 | 1231 |
1232 _generaldelta = interfaceutil.Attribute( | |
1233 """Whether generaldelta storage is being used. | |
1234 | |
1235 TODO this is revlog specific and should not be exposed. | |
1236 """ | |
1237 ) | |
1238 | |
1239 fulltextcache = interfaceutil.Attribute( | 1232 fulltextcache = interfaceutil.Attribute( |
1240 """Dict with cache of fulltexts. | 1233 """Dict with cache of fulltexts. |
1241 | 1234 |
1242 TODO this doesn't feel appropriate for the storage interface. | 1235 TODO this doesn't feel appropriate for the storage interface. |
1243 """ | 1236 """ |