Mercurial > hg4j
diff src/org/tmatesoft/hg/repo/HgManifest.java @ 601:8143c1f77d45
Remove debug timestamps
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Mon, 06 May 2013 17:10:46 +0200 |
parents | 46f29b73e51e |
children | 66f1cc23b906 |
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/repo/HgManifest.java Fri May 03 17:03:31 2013 +0200 +++ b/src/org/tmatesoft/hg/repo/HgManifest.java Mon May 06 17:10:46 2013 +0200 @@ -666,7 +666,6 @@ } } if (undefinedChangelogRevision.size() > 0) { - final long t1 = System.nanoTime(); final IntMap<Nodeid> missingCsetToManifest = new IntMap<Nodeid>(undefinedChangelogRevision.size()); int[] undefinedClogRevs = undefinedChangelogRevision.toArray(); // undefinedChangelogRevision is sorted by the nature it's created @@ -677,7 +676,6 @@ } }, undefinedClogRevs); assert missingCsetToManifest.size() == undefinedChangelogRevision.size(); - final long t2 = System.nanoTime(); for (int u : undefinedClogRevs) { Nodeid manifest = missingCsetToManifest.get(u); if (manifest == null || manifest.isNull()) { @@ -696,8 +694,6 @@ changelog2manifest[u] = HgManifest.this.getRevisionIndex(manifest); } } - final long t3 = System.nanoTime(); - System.out.printf("\tRevisionMapper#finish(), %d missing revs: %d + %d us\n", undefinedChangelogRevision.size(), (t2-t1) / 1000, (t3-t2) / 1000); } } }