comparison cmdline/org/tmatesoft/hg/console/Remote.java @ 150:6b55f10ef54b

Unused variables removed.
author Alexander Kitaev <kitaev@gmail.com>
date Thu, 24 Feb 2011 18:53:33 +0100
parents 46291ec605a0
children 643ddec3be36
comparison
equal deleted inserted replaced
149:868a5a6e9f93 150:6b55f10ef54b
51 cmd=heads gives space-separated list of nodeids (or just one) 51 cmd=heads gives space-separated list of nodeids (or just one)
52 nodeids are in hex (printable) format, need to convert fromAscii() 52 nodeids are in hex (printable) format, need to convert fromAscii()
53 cmd=branchmap 53 cmd=branchmap
54 */ 54 */
55 public static void main(String[] args) throws Exception { 55 public static void main(String[] args) throws Exception {
56 String nid = "d6d2a630f4a6d670c90a5ca909150f2b426ec88f";
57 ConfigFile cfg = new Internals().newConfigFile(); 56 ConfigFile cfg = new Internals().newConfigFile();
58 cfg.addLocation(new File(System.getProperty("user.home"), ".hgrc")); 57 cfg.addLocation(new File(System.getProperty("user.home"), ".hgrc"));
59 String svnkitServer = cfg.getSection("paths").get("svnkit"); 58 String svnkitServer = cfg.getSection("paths").get("svnkit");
60 URL url = new URL(svnkitServer + "?cmd=changegroup&roots=a78c980749e3ccebb47138b547e9b644a22797a9"); 59 URL url = new URL(svnkitServer + "?cmd=changegroup&roots=a78c980749e3ccebb47138b547e9b644a22797a9");
61 60