Mercurial > hg4j
comparison src/org/tmatesoft/hg/core/HgStatusCommand.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 | d78cb5ca3053 |
children | 90df078d6418 |
comparison
equal
deleted
inserted
replaced
525:0be5be8d57e9 | 526:2f9ed6bcefa2 |
---|---|
22 | 22 |
23 import java.io.IOException; | 23 import java.io.IOException; |
24 import java.util.ConcurrentModificationException; | 24 import java.util.ConcurrentModificationException; |
25 | 25 |
26 import org.tmatesoft.hg.internal.ChangelogHelper; | 26 import org.tmatesoft.hg.internal.ChangelogHelper; |
27 import org.tmatesoft.hg.internal.Internals; | |
27 import org.tmatesoft.hg.repo.HgRepository; | 28 import org.tmatesoft.hg.repo.HgRepository; |
28 import org.tmatesoft.hg.repo.HgRuntimeException; | 29 import org.tmatesoft.hg.repo.HgRuntimeException; |
29 import org.tmatesoft.hg.repo.HgStatusCollector; | 30 import org.tmatesoft.hg.repo.HgStatusCollector; |
30 import org.tmatesoft.hg.repo.HgStatusInspector; | 31 import org.tmatesoft.hg.repo.HgStatusInspector; |
31 import org.tmatesoft.hg.repo.HgWorkingCopyStatusCollector; | 32 import org.tmatesoft.hg.repo.HgWorkingCopyStatusCollector; |
154 scope = scopeMatcher; | 155 scope = scopeMatcher; |
155 return this; | 156 return this; |
156 } | 157 } |
157 | 158 |
158 public HgStatusCommand subrepo(boolean visit) { | 159 public HgStatusCommand subrepo(boolean visit) { |
159 throw HgRepository.notImplemented(); | 160 throw Internals.notImplemented(); |
160 } | 161 } |
161 | 162 |
162 /** | 163 /** |
163 * Perform status operation according to parameters set. | 164 * Perform status operation according to parameters set. |
164 * | 165 * |