Issue #2161: unify test input file names
This commit is contained in:
parent
4b75ad4bd0
commit
4ae4bb3a9c
|
|
@ -1,8 +0,0 @@
|
|||
package com.puppycrawl.tools.checkstyle;
|
||||
|
||||
public class LocalAnnotations
|
||||
{
|
||||
public @interface Rule {
|
||||
|
||||
}
|
||||
}
|
||||
|
|
@ -1,17 +0,0 @@
|
|||
////////////////////////////////////////////////////////////////////////////////
|
||||
// Annotation for use by package definitions
|
||||
// Created: 2005
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
package com.puppycrawl.tools.checkstyle;
|
||||
|
||||
import java.lang.annotation.Target;
|
||||
import java.lang.annotation.ElementType;
|
||||
|
||||
/**
|
||||
* Annotation for use by package definitions
|
||||
* @author Michael Studman
|
||||
*/
|
||||
@Target(value=ElementType.PACKAGE)
|
||||
public @interface MyAnnotation
|
||||
{
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@ package com.puppycrawl.tools.checkstyle.checks.design;
|
|||
|
||||
import org.junit.rules.TemporaryFolder;
|
||||
|
||||
import com.puppycrawl.tools.checkstyle.LocalAnnotations.Rule;
|
||||
import com.puppycrawl.tools.checkstyle.checks.design.InputLocalAnnotations.Rule;
|
||||
|
||||
public class InputAnnotatedVisibilitySameTypeName
|
||||
{
|
||||
|
|
|
|||
|
|
@ -0,0 +1,8 @@
|
|||
package com.puppycrawl.tools.checkstyle.checks.design;
|
||||
|
||||
public class InputLocalAnnotations
|
||||
{
|
||||
public @interface Rule {
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue