# HG changeset patch # User FUJIWARA Katsunori # Date 1490981569 -32400 # Node ID 4e446d31a7444023295dbb7689e3cdad600993f8 # Parent 068b06b43cdf07c8a50db915b8275b3161fed447 largefiles: remove unused readstandin() Now, there is no client of readstandin(). diff -r 068b06b43cdf -r 4e446d31a744 hgext/largefiles/lfutil.py --- 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.wwrite(standin, hash + '\n', executable and 'x' or '')