Issue #2161: unify test input file names

This commit is contained in:
rnveach 2015-11-05 22:18:26 -05:00 committed by Roman Ivanov
parent 4b75ad4bd0
commit 4ae4bb3a9c
4 changed files with 9 additions and 26 deletions

View File

@ -1,8 +0,0 @@
package com.puppycrawl.tools.checkstyle;
public class LocalAnnotations
{
public @interface Rule {
}
}

View File

@ -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
{
}

View File

@ -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
{

View File

@ -0,0 +1,8 @@
package com.puppycrawl.tools.checkstyle.checks.design;
public class InputLocalAnnotations
{
public @interface Rule {
}
}