largefiles: remove unused readstandin()
Now, there is no client of readstandin().
--- 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 '')