Mercurial > hg4j
changeset 303:2ffcbf360fd5
Remove debug printout
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Tue, 20 Sep 2011 04:43:39 +0200 |
parents | a7a3395a519e |
children | 85b8efde5586 |
files | src/org/tmatesoft/hg/repo/HgStatusCollector.java |
diffstat | 1 files changed, 0 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/repo/HgStatusCollector.java Sat Sep 17 14:01:31 2011 +0200 +++ b/src/org/tmatesoft/hg/repo/HgStatusCollector.java Tue Sep 20 04:43:39 2011 +0200 @@ -106,9 +106,6 @@ // manifest revisions 66650, 21683, 21684. Thus, innocent walk(22418,22420) results in 40k+ revisions and OOME // Instead, be explicit of what revisions are of interest assert minRev <= maxRev; - if (maxRev == 22420) { - System.out.println(); - } int[] revisionsToCollect = new int[maxRev - minRev + 1]; for (int x = minRev, i = 0; x <= maxRev; i++, x++) { revisionsToCollect[i] = x;