diff src/org/tmatesoft/hg/core/HgStatusCommand.java @ 429:cd658b24a620

FIXMEs: javadoc, proper use of constants
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Thu, 29 Mar 2012 18:29:03 +0200
parents 31a89587eb04
children 36fd1fd06492
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/core/HgStatusCommand.java	Thu Mar 29 18:05:05 2012 +0200
+++ b/src/org/tmatesoft/hg/core/HgStatusCommand.java	Thu Mar 29 18:29:03 2012 +0200
@@ -165,12 +165,12 @@
 	 * @param statusHandler callback to get status information
  	 * @throws HgCallbackTargetException propagated exception from the handler
 	 * @throws HgException subclass thereof to indicate specific issue with the command arguments or repository state
+	 * @throws IOException if there are (further unspecified) errors while walking working copy
 	 * @throws CancelledException if execution of the command was cancelled
-	 * @throws IOException FIXME EXCEPTIONS WTF it's doing here if there are (further unspecified) errors while walking working copy
 	 * @throws IllegalArgumentException if handler is <code>null</code>
 	 * @throws ConcurrentModificationException if this command already runs (i.e. being used from another thread)
 	 */
-	public void execute(HgStatusHandler statusHandler) throws HgCallbackTargetException, HgException, CancelledException, IOException {
+	public void execute(HgStatusHandler statusHandler) throws HgCallbackTargetException, HgException, IOException, CancelledException {
 		if (statusHandler == null) {
 			throw new IllegalArgumentException();
 		}