largefiles: remove unused readstandin()
authorFUJIWARA Katsunori <foozy@lares.dti.ne.jp>
Sat, 01 Apr 2017 02:32:49 +0900
changeset 31744 4e446d31a744
parent 31743 068b06b43cdf
child 31745 a40e979b9d97
largefiles: remove unused readstandin() Now, there is no client of readstandin().
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.root>/<standin>'''
     repo.wwrite(standin, hash + '\n', executable and 'x' or '')