Mercurial > jhg
diff cmdline/org/tmatesoft/hg/console/Manifest.java @ 427:31a89587eb04
FIXMEs: consistent names, throws for commands and their handlers. Use of checked exceptions in hi-level api
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Thu, 29 Mar 2012 17:14:35 +0200 |
parents | 9c9c442b5f2e |
children | d78cb5ca3053 |
line wrap: on
line diff
--- a/cmdline/org/tmatesoft/hg/console/Manifest.java Wed Mar 28 19:34:37 2012 +0200 +++ b/cmdline/org/tmatesoft/hg/console/Manifest.java Thu Mar 29 17:14:35 2012 +0200 @@ -19,6 +19,7 @@ import static org.tmatesoft.hg.console.Options.asSet; import static org.tmatesoft.hg.repo.HgRepository.TIP; +import org.tmatesoft.hg.core.HgManifestHandler; import org.tmatesoft.hg.core.HgFileRevision; import org.tmatesoft.hg.core.HgManifestCommand; import org.tmatesoft.hg.core.Nodeid; @@ -45,7 +46,7 @@ } final boolean debug = cmdLineOpts.getBoolean("--debug"); final boolean verbose = cmdLineOpts.getBoolean("-v", "--verbose"); - HgManifestCommand.Handler h = new HgManifestCommand.Handler() { + HgManifestHandler h = new HgManifestHandler() { public void begin(Nodeid manifestRevision) { }