Mercurial > jhg
comparison src/org/tmatesoft/hg/core/HgChangesetFileSneaker.java @ 468:3ca4ae7bdd38 v1.0.0
Clean experimental marks and deprecation code. Update version number to release
| author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
|---|---|
| date | Wed, 11 Jul 2012 17:48:17 +0200 |
| parents | 36fd1fd06492 |
| children | b286222158be |
comparison
equal
deleted
inserted
replaced
| 467:51d682cf9cdc | 468:3ca4ae7bdd38 |
|---|---|
| 164 checkResult = new Outcome(Outcome.Kind.Success, String.format("File %s nor its origins were known at repository %s revision", file, cset.shortNotation())); | 164 checkResult = new Outcome(Outcome.Kind.Success, String.format("File %s nor its origins were known at repository %s revision", file, cset.shortNotation())); |
| 165 return checkResult; | 165 return checkResult; |
| 166 } | 166 } |
| 167 | 167 |
| 168 /** | 168 /** |
| 169 * @deprecated use {@link #getCheckResult()} instead | |
| 170 */ | |
| 171 @Deprecated | |
| 172 public Outcome getCheckStatus() { | |
| 173 return getCheckResult(); | |
| 174 } | |
| 175 /** | |
| 176 * Re-get latest check status object | 169 * Re-get latest check status object |
| 177 */ | 170 */ |
| 178 public Outcome getCheckResult() { | 171 public Outcome getCheckResult() { |
| 179 assertCheckRan(); | 172 assertCheckRan(); |
| 180 return checkResult; | 173 return checkResult; |
