Mercurial > hg4j
diff cmdline/org/tmatesoft/hg/console/Incoming.java @ 98:225c48d964ed
Changelog to HgChangelog, Refactoring doesn't recognize name with inner class
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Thu, 27 Jan 2011 21:27:37 +0100 |
parents | ee2c750b036d |
children | a3a2e5deb320 |
line wrap: on
line diff
--- a/cmdline/org/tmatesoft/hg/console/Incoming.java Thu Jan 27 21:25:21 2011 +0100 +++ b/cmdline/org/tmatesoft/hg/console/Incoming.java Thu Jan 27 21:27:37 2011 +0100 @@ -45,7 +45,7 @@ } // in fact, all we need from changelog is set of all nodeids. However, since ParentWalker reuses same Nodeids, it's not too expensive // to reuse it here, XXX although later this may need to be refactored - final Changelog.ParentWalker pw = hgRepo.getChangelog().new ParentWalker(); + final HgChangelog.ParentWalker pw = hgRepo.getChangelog().new ParentWalker(); pw.init(); // HashSet<Nodeid> base = new HashSet<Nodeid>();