diff src/org/tmatesoft/hg/repo/HgInvalidControlFileException.java @ 467:51d682cf9cdc

Cleaned experimental tag and updated comments/javadoc
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Fri, 22 Jun 2012 17:39:31 +0200
parents 9c9c442b5f2e
children 6526d8adbc0f
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/repo/HgInvalidControlFileException.java	Wed Jun 20 17:12:00 2012 +0200
+++ b/src/org/tmatesoft/hg/repo/HgInvalidControlFileException.java	Fri Jun 22 17:39:31 2012 +0200
@@ -19,20 +19,18 @@
 import java.io.File;
 
 import org.tmatesoft.hg.core.Nodeid;
-import org.tmatesoft.hg.internal.Experimental;
 import org.tmatesoft.hg.util.Path;
 
 /**
  * Subclass of {@link HgInvalidFileException} to indicate failure to deal with one of <b>Mercurial</b> control files 
  * (most likely those under .hg/, but also those residing in the repository, with special meaning to the Mercurial, like .hgtags or .hgignore)
  * 
- * XXX Perhaps, HgInvalidRevlogException? and parent HgInvalidRepositoryFileException?
  * @author Artem Tikhomirov
  * @author TMate Software Ltd.
  */
 @SuppressWarnings("serial")
-@Experimental(reason="WORK IN PROGRESS. Name is likely to change")
 public class HgInvalidControlFileException extends HgInvalidFileException {
+	// XXX Perhaps, child HgInvalidRevlogException and parent HgInvalidRepositoryFileException?
 
 	public HgInvalidControlFileException(String message, Throwable th, File file) {
 		super(message, th, file);