# HG changeset patch # User FUJIWARA Katsunori # Date 1490361899 -32400 # Node ID d5d0e6ca62adf0201fef8706836a59afef1ef597 # Parent 5c1d3f1b8f4494fec61bf058cee7abeefbbd0905 largefiles: replace splitstandin() by isstandin() to omit str creation If splitstandin()-ed str itself isn't used, isstandin() should be used instead of it, to omit meaningless str creation. diff -r 5c1d3f1b8f44 -r d5d0e6ca62ad hgext/largefiles/overrides.py --- a/hgext/largefiles/overrides.py Fri Mar 24 22:24:58 2017 +0900 +++ b/hgext/largefiles/overrides.py Fri Mar 24 22:24:59 2017 +0900 @@ -351,7 +351,7 @@ pats.update(fixpats(f, tostandin) for f in p) else: def tostandin(f): - if lfutil.splitstandin(f): + if lfutil.isstandin(f): return f return lfutil.standin(f) pats.update(fixpats(f, tostandin) for f in p)