Mercurial > hg4j
diff src/org/tmatesoft/hg/repo/Revlog.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 | c3505001a42a |
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/repo/Revlog.java Fri May 03 17:03:31 2013 +0200 +++ b/src/org/tmatesoft/hg/repo/Revlog.java Mon May 06 17:10:46 2013 +0200 @@ -150,7 +150,6 @@ * @throws HgRuntimeException subclass thereof to indicate issues with the library. <em>Runtime exception</em> */ public final int getRevisionIndex(Nodeid nid) throws HgRuntimeException { -// final long t1 = System.nanoTime(); int revision; if (useRevisionLookup) { if (revisionLookup == null) { @@ -166,8 +165,6 @@ // Perhaps, more tailored description method would be suitable here throw new HgInvalidRevisionException(String.format("Can't find revision %s in %s", nid.shortNotation(), this), nid, null); } -// final long t2 = System.nanoTime(); -// System.out.printf("\tgetRevisionIndex(%s): %d us\n", nid.shortNotation(), (t2-t1)/1000); return revision; }