Moving another Javadoc check to see what is involved.

A suprisingly small amount. Love the Eclipse refactoring
support having the smarts to do the CVS operations.
This commit is contained in:
Oliver Burn 2003-06-03 13:33:59 +00:00
parent 7f0e2b8f92
commit 2ef6dc6a43
3 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
////////////////////////////////////////////////////////////////////////////////
package com.puppycrawl.tools.checkstyle.checks;
package com.puppycrawl.tools.checkstyle.checks.javadoc;
import org.apache.commons.beanutils.ConversionException;
import org.apache.regexp.RE;

View File

@ -23,7 +23,6 @@ import com.puppycrawl.tools.checkstyle.checks.IllegalInstantiationCheckTest;
import com.puppycrawl.tools.checkstyle.checks.IndentationCheckTest;
import com.puppycrawl.tools.checkstyle.checks.InnerAssignmentCheckTest;
import com.puppycrawl.tools.checkstyle.checks.JavadocMethodCheckTest;
import com.puppycrawl.tools.checkstyle.checks.JavadocTypeCheckTest;
import com.puppycrawl.tools.checkstyle.checks.LeftCurlyCheckTest;
import com.puppycrawl.tools.checkstyle.checks.LineLengthCheckTest;
import com.puppycrawl.tools.checkstyle.checks.LocalFinalVariableNameCheckTest;
@ -66,6 +65,7 @@ import com.puppycrawl.tools.checkstyle.checks.FinalParametersCheckTest;
import com.puppycrawl.tools.checkstyle.checks.HideUtilityClassConstructorCheckTest;
import com.puppycrawl.tools.checkstyle.checks.AvoidNestedBlocksCheckTest;
import com.puppycrawl.tools.checkstyle.checks.InterfaceIsTypeCheckTest;
import com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocTypeCheckTest;
import com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocVariableCheckTest;
import junit.framework.Test;
import junit.framework.TestSuite;

View File

@ -1,4 +1,4 @@
package com.puppycrawl.tools.checkstyle.checks;
package com.puppycrawl.tools.checkstyle.checks.javadoc;
import com.puppycrawl.tools.checkstyle.BaseCheckTestCase;
import com.puppycrawl.tools.checkstyle.DefaultConfiguration;