Mercurial > hg4j
comparison src/org/tmatesoft/hg/core/HgOutgoingCommand.java @ 526:2f9ed6bcefa2
Initial support for Revert command with accompanying minor refactoring
| author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
|---|---|
| date | Tue, 15 Jan 2013 17:07:19 +0100 |
| parents | 1fc0da631200 |
| children | 6526d8adbc0f |
comparison
equal
deleted
inserted
replaced
| 525:0be5be8d57e9 | 526:2f9ed6bcefa2 |
|---|---|
| 18 | 18 |
| 19 import java.util.List; | 19 import java.util.List; |
| 20 import java.util.Set; | 20 import java.util.Set; |
| 21 import java.util.TreeSet; | 21 import java.util.TreeSet; |
| 22 | 22 |
| 23 import org.tmatesoft.hg.internal.Internals; | |
| 23 import org.tmatesoft.hg.internal.RepositoryComparator; | 24 import org.tmatesoft.hg.internal.RepositoryComparator; |
| 24 import org.tmatesoft.hg.repo.HgChangelog; | 25 import org.tmatesoft.hg.repo.HgChangelog; |
| 25 import org.tmatesoft.hg.repo.HgInvalidControlFileException; | 26 import org.tmatesoft.hg.repo.HgInvalidControlFileException; |
| 26 import org.tmatesoft.hg.repo.HgRemoteRepository; | 27 import org.tmatesoft.hg.repo.HgRemoteRepository; |
| 27 import org.tmatesoft.hg.repo.HgRepository; | 28 import org.tmatesoft.hg.repo.HgRepository; |
| 86 * | 87 * |
| 87 * @return <code>this</code> for convenience | 88 * @return <code>this</code> for convenience |
| 88 */ | 89 */ |
| 89 public HgOutgoingCommand subrepo(boolean include) { | 90 public HgOutgoingCommand subrepo(boolean include) { |
| 90 includeSubrepo = include; | 91 includeSubrepo = include; |
| 91 throw HgRepository.notImplemented(); | 92 throw Internals.notImplemented(); |
| 92 } | 93 } |
| 93 | 94 |
| 94 /** | 95 /** |
| 95 * Lightweight check for outgoing changes. | 96 * Lightweight check for outgoing changes. |
| 96 * Reported changes are from any branch (limits set by {@link #branch(String)} are not taken into account. | 97 * Reported changes are from any branch (limits set by {@link #branch(String)} are not taken into account. |
