Mercurial > hg4j
diff src/org/tmatesoft/hg/core/HgStatusHandler.java @ 454:36fd1fd06492
oth.util.Status renamed to Outcome as the noun is too overloaded, especially in scm
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Wed, 13 Jun 2012 21:07:39 +0200 |
parents | 31a89587eb04 |
children |
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/core/HgStatusHandler.java Wed Jun 13 18:18:37 2012 +0200 +++ b/src/org/tmatesoft/hg/core/HgStatusHandler.java Wed Jun 13 21:07:39 2012 +0200 @@ -18,7 +18,7 @@ import org.tmatesoft.hg.internal.Callback; import org.tmatesoft.hg.util.Path; -import org.tmatesoft.hg.util.Status; +import org.tmatesoft.hg.util.Outcome; /** * Callback to process {@link HgStatus} objects. @@ -43,5 +43,5 @@ * @param s error description object * @throws HgCallbackTargetException wrapper for any exception user code may produce */ - void error(Path file, Status s) throws HgCallbackTargetException; + void error(Path file, Outcome s) throws HgCallbackTargetException; }