comparison src/org/tmatesoft/hg/repo/HgRemoteRepository.java @ 172:87f40938c9b2

Configuration handling out of HgLookup (bad idea to use URL to pass keys)
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Fri, 25 Mar 2011 00:13:37 +0100
parents 2c3e96674e2a
children a8df7162ec75
comparison
equal deleted inserted replaced
171:2c3e96674e2a 172:87f40938c9b2
36 36
37 HgRemoteRepository(URL url) { 37 HgRemoteRepository(URL url) {
38 } 38 }
39 39
40 public List<Nodeid> heads() { 40 public List<Nodeid> heads() {
41 return Collections.emptyList(); 41 return Collections.singletonList(Nodeid.fromAscii("71ddbf8603e8e09d54ac9c5fe4bb5ae824589f1d"));
42 // return Collections.emptyList();
42 } 43 }
43 44
44 public List<Nodeid> between(Nodeid base, Nodeid tip) { 45 public List<Nodeid> between(Nodeid base, Nodeid tip) {
45 return Collections.emptyList(); 46 return Collections.emptyList();
46 } 47 }