Mercurial > hg-stable
changeset 31744:4e446d31a744
largefiles: remove unused readstandin()
Now, there is no client of readstandin().
author | FUJIWARA Katsunori <foozy@lares.dti.ne.jp> |
---|---|
date | Sat, 01 Apr 2017 02:32:49 +0900 |
parents | 068b06b43cdf |
children | a40e979b9d97 |
files | hgext/largefiles/lfutil.py |
diffstat | 1 files changed, 0 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/largefiles/lfutil.py Sat Apr 01 02:32:48 2017 +0900 +++ b/hgext/largefiles/lfutil.py Sat Apr 01 02:32:49 2017 +0900 @@ -361,11 +361,6 @@ This encapsulates how "standin" data is stored into storage layer.''' return fctx.data().strip() -def readstandin(repo, filename, node=None): - '''read hex hash from standin for filename at given node, or working - directory if no node is given''' - return readasstandin(repo[node][standin(filename)]) - def writestandin(repo, standin, hash, executable): '''write hash to <repo.root>/<standin>''' repo.wwrite(standin, hash + '\n', executable and 'x' or '')