Mercurial > hg4j
diff src/org/tmatesoft/hg/internal/FileAnnotation.java @ 630:72c979555cb8
HgDiffCommand. Do not use deprecated code. Javadoc
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Thu, 23 May 2013 19:44:28 +0200 |
parents | 5f52074707b2 |
children | cce0387c6041 |
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/internal/FileAnnotation.java Wed May 22 16:46:15 2013 +0200 +++ b/src/org/tmatesoft/hg/internal/FileAnnotation.java Thu May 23 19:44:28 2013 +0200 @@ -17,13 +17,9 @@ package org.tmatesoft.hg.internal; -import org.tmatesoft.hg.core.HgCallbackTargetException; -import org.tmatesoft.hg.core.HgIterateDirection; import org.tmatesoft.hg.core.HgBlameInspector; import org.tmatesoft.hg.core.HgBlameInspector.RevisionDescriptor; -import org.tmatesoft.hg.repo.HgDataFile; import org.tmatesoft.hg.repo.HgInvalidStateException; -import org.tmatesoft.hg.repo.HgRuntimeException; /** * Produce output like 'hg annotate' does @@ -46,17 +42,6 @@ int totalLines(); } - /** - * Annotate file revision, line by line. - */ - public static void annotate(HgDataFile df, int changelogRevisionIndex, LineInspector insp) throws HgCallbackTargetException, HgRuntimeException { - if (!df.exists()) { - return; - } - FileAnnotation fa = new FileAnnotation(insp); - df.annotate(0, changelogRevisionIndex, fa, HgIterateDirection.NewToOld); - } - // keeps <startSeq1, startSeq2, len> of equal blocks, origin to target, from some previous step private RangeSeq activeEquals; // equal blocks of the current iteration, to be recalculated before next step