Mercurial > hg4j
diff src/org/tmatesoft/hg/core/HgIncomingCommand.java @ 380:9517df1ef7ec
Comments/javadoc
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Thu, 09 Feb 2012 18:57:14 +0100 |
parents | 189dc6dc1c3e |
children | 7f136a3fa671 |
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/core/HgIncomingCommand.java Thu Feb 09 16:47:17 2012 +0100 +++ b/src/org/tmatesoft/hg/core/HgIncomingCommand.java Thu Feb 09 18:57:14 2012 +0100 @@ -100,8 +100,8 @@ * * @return list of nodes present at remote and missing locally * @throws HgRemoteConnectionException when failed to communicate with remote repository - * @throws HgInvalidControlFileException FIXME - * @throws CancelledException + * @throws HgInvalidControlFileException if access to revlog index/data entry failed + * @throws CancelledException if execution of the command was cancelled */ public List<Nodeid> executeLite() throws HgRemoteConnectionException, HgInvalidControlFileException, CancelledException { LinkedHashSet<Nodeid> result = new LinkedHashSet<Nodeid>(); @@ -122,10 +122,10 @@ * Full information about incoming changes * * @throws HgRemoteConnectionException when failed to communicate with remote repository - * @throws HgInvalidControlFileException FIXME + * @throws HgInvalidControlFileException if access to revlog index/data entry failed * @throws HgInvalidFileException to indicate failure working with locally downloaded changes in a bundle file * @throws HgCallbackTargetException to re-throw exception from the handler - * @throws CancelledException + * @throws CancelledException if execution of the command was cancelled */ public void executeFull(final HgChangesetHandler handler) throws HgRemoteConnectionException, HgInvalidControlFileException, HgInvalidFileException, HgCallbackTargetException, CancelledException { if (handler == null) {