# HG changeset patch
# User Augie Fackler <augie@google.com>
# Date 2020-04-02 20:02:21
# Node ID 61134a232d00b93db03d8ca31924c4bd425c6bbf
# Parent  9d569983668b29ca2de1e7b160f81287497d3220

manifest: leave a TODO where we may have more work for sha1 portability

Differential Revision: https://phab.mercurial-scm.org/D8375

diff --git a/mercurial/manifest.py b/mercurial/manifest.py
--- a/mercurial/manifest.py
+++ b/mercurial/manifest.py
@@ -1432,6 +1432,7 @@ class manifestfulltextcache(util.lrucach
                 set = super(manifestfulltextcache, self).__setitem__
                 # ignore trailing data, this is a cache, corruption is skipped
                 while True:
+                    # TODO do we need to do work here for sha1 portability?
                     node = fp.read(20)
                     if len(node) < 20:
                         break