Mercurial > hg4j
comparison src/org/tmatesoft/hg/core/HgLogCommand.java @ 431:12f668401613
FIXMEs: awkward API refactored, what need to be internal got hidden; public aspects got captured in slim interfaces
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Thu, 29 Mar 2012 20:54:04 +0200 |
parents | 31a89587eb04 |
children | 1fc0da631200 |
comparison
equal
deleted
inserted
replaced
430:d280759c2a3f | 431:12f668401613 |
---|---|
321 } | 321 } |
322 | 322 |
323 HistoryNode[] go(HgDataFile fileNode) throws HgInvalidControlFileException { | 323 HistoryNode[] go(HgDataFile fileNode) throws HgInvalidControlFileException { |
324 completeHistory = new HistoryNode[fileNode.getRevisionCount()]; | 324 completeHistory = new HistoryNode[fileNode.getRevisionCount()]; |
325 commitRevisions = new int[completeHistory.length]; | 325 commitRevisions = new int[completeHistory.length]; |
326 fileNode.walk(0, TIP, this); | 326 fileNode.indexWalk(0, TIP, this); |
327 return completeHistory; | 327 return completeHistory; |
328 } | 328 } |
329 }; | 329 }; |
330 final ProgressSupport progressHelper = getProgressSupport(handler); | 330 final ProgressSupport progressHelper = getProgressSupport(handler); |
331 progressHelper.start(4); | 331 progressHelper.start(4); |