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:
parent
7f0e2b8f92
commit
2ef6dc6a43
|
|
@ -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;
|
||||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
Loading…
Reference in New Issue