comparison src/org/tmatesoft/hg/core/HgRepoFacade.java @ 181:cd3371670f0b

Refactor incoming and outgoing code to be shared with RepositoryComparator. Placeholders for in/out commands. Refactor common remote lookup code
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Tue, 12 Apr 2011 19:10:38 +0200
parents 1a7a9a20e1f9
children 981f9f50bb6c
comparison
equal deleted inserted replaced
180:42fe9a94b9d0 181:cd3371670f0b
100 } 100 }
101 101
102 public HgManifestCommand createManifestCommand() { 102 public HgManifestCommand createManifestCommand() {
103 return new HgManifestCommand(repo); 103 return new HgManifestCommand(repo);
104 } 104 }
105
106 public HgOutgoingCommand createOutgoingCommand() {
107 return new HgOutgoingCommand(repo);
108 }
109
110 public HgIncomingCommand createIncomingCommand() {
111 return new HgIncomingCommand(repo);
112 }
105 } 113 }