Mercurial > jhg
diff cmdline/org/tmatesoft/hg/console/Main.java @ 299:45dc79e545f5
Recognize flag options (options with no arguments) in command line sample apps
| author | Artem Tikhomirov <tikhomirov.artem@gmail.com> | 
|---|---|
| date | Sat, 17 Sep 2011 13:26:52 +0200 | 
| parents | 981f9f50bb6c | 
| children | ae8d116f4ee2 | 
line wrap: on
 line diff
--- a/cmdline/org/tmatesoft/hg/console/Main.java Sat Sep 17 12:24:50 2011 +0200 +++ b/cmdline/org/tmatesoft/hg/console/Main.java Sat Sep 17 13:26:52 2011 +0200 @@ -74,7 +74,7 @@ private HgRepository hgRepo; public Main(String[] args) throws Exception { - cmdLineOpts = Options.parse(args); + cmdLineOpts = Options.parse(args, Collections.<String>emptySet()); hgRepo = cmdLineOpts.findRepository(); if (hgRepo.isInvalid()) { System.err.printf("Can't find repository in: %s\n", hgRepo.getLocation());
