comparison src/org/tmatesoft/hg/core/HgRepoFacade.java @ 630:72c979555cb8

HgDiffCommand. Do not use deprecated code. Javadoc
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Thu, 23 May 2013 19:44:28 +0200
parents 73c20c648c1f
children 4a0bab2c6da1
comparison
equal deleted inserted replaced
629:5f52074707b2 630:72c979555cb8
151 } 151 }
152 152
153 public HgCommitCommand createCommitCommand() { 153 public HgCommitCommand createCommitCommand() {
154 return new HgCommitCommand(repo); 154 return new HgCommitCommand(repo);
155 } 155 }
156
157 public HgDiffCommand createDiffCommand() {
158 return new HgDiffCommand(repo);
159 }
156 } 160 }