Mercurial > hg4j
comparison src/org/tmatesoft/hg/repo/HgSubrepoLocation.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 | 51d682cf9cdc |
| children |
comparison
equal
deleted
inserted
replaced
| 525:0be5be8d57e9 | 526:2f9ed6bcefa2 |
|---|---|
| 18 | 18 |
| 19 import java.io.File; | 19 import java.io.File; |
| 20 | 20 |
| 21 import org.tmatesoft.hg.core.HgRepositoryNotFoundException; | 21 import org.tmatesoft.hg.core.HgRepositoryNotFoundException; |
| 22 import org.tmatesoft.hg.core.Nodeid; | 22 import org.tmatesoft.hg.core.Nodeid; |
| 23 import org.tmatesoft.hg.internal.Internals; | |
| 23 import org.tmatesoft.hg.util.Path; | 24 import org.tmatesoft.hg.util.Path; |
| 24 | 25 |
| 25 /** | 26 /** |
| 26 * Descriptor for subrepository location | 27 * Descriptor for subrepository location |
| 27 * | 28 * |
| 107 /** | 108 /** |
| 108 * Answers whether there are local changes in the sub-repository, | 109 * Answers whether there are local changes in the sub-repository, |
| 109 * @return <code>true</code> if it's dirty | 110 * @return <code>true</code> if it's dirty |
| 110 */ | 111 */ |
| 111 public boolean hasChanges() { | 112 public boolean hasChanges() { |
| 112 throw HgRepository.notImplemented(); | 113 throw Internals.notImplemented(); |
| 113 } | 114 } |
| 114 | 115 |
| 115 /** | 116 /** |
| 116 * Access repository that owns nested one described by this object | 117 * Access repository that owns nested one described by this object |
| 117 */ | 118 */ |
