aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDmytro Kytsmen <dmitrokytsmen@gmail.com>2017-05-02 12:29:45 +0300
committerRoman Ivanov <romani@users.noreply.github.com>2017-05-02 06:43:06 -0700
commitf875cea5b1881f15153832ea383d582cb6433060 (patch)
tree33e073b3083ec526f570ac5c33af9a7b3e9debdf /src
parentc151f0d2011695c80247da003b87f4581122ac8e (diff)
downloadcheckstyle-f875cea5b1881f15153832ea383d582cb6433060.tar.gz
Issue #3891: Split and Organize Checkstyle inputs by Test: sizes package cleanup
Diffstat (limited to 'src')
-rw-r--r--src/test/resources/com/puppycrawl/tools/checkstyle/checks/sizes/InputModifier.java133
1 files changed, 0 insertions, 133 deletions
diff --git a/src/test/resources/com/puppycrawl/tools/checkstyle/checks/sizes/InputModifier.java b/src/test/resources/com/puppycrawl/tools/checkstyle/checks/sizes/InputModifier.java
deleted file mode 100644
index 39fbc846f..000000000
--- a/src/test/resources/com/puppycrawl/tools/checkstyle/checks/sizes/InputModifier.java
+++ /dev/null
@@ -1,133 +0,0 @@
-////////////////////////////////////////////////////////////////////////////////
-// Test case file for checkstyle.
-// Created: 2001
-////////////////////////////////////////////////////////////////////////////////
-
-package com.puppycrawl.tools.checkstyle.checks.sizes;
-
-strictfp final class InputModifier // illegal order of modifiers for class
-{
-
- /** Illegal order of modifiers for variables */
- static private boolean sModifierOrderVar = false;
-
- /**
- * Illegal order of modifiers for methods. Make sure that the
- * first and last modifier from the JLS sequence is used.
- */
- strictfp private void doStuff()
- {
- }
-
- /** Single annotation without other modifiers */
- @MyAnnotation2 void someMethod()
- {
- }
-
- /** Illegal order of annotation - must come first */
- private @MyAnnotation2 void someMethod2()
- {
- }
-
- /** Annotation in middle of other modifiers otherwise in correct order */
- private @MyAnnotation2 strictfp void someMethod3()
- {
- }
-
- /** Correct order */
- @MyAnnotation2 private strictfp void someMethod4()
- {
- }
-
- /** Annotation in middle of other modifiers otherwise in correct order */
- @MyAnnotation2 private static @MyAnnotation4 strictfp void someMethod5()
- {
- }
-
- /** holder for redundant 'public' modifier check. */
- public static interface InputRedundantPublicModifier // violation
- {
- /** redundant 'public' modifier */
- public void a(); // violation
-
- /** all OK */
- void b();
-
- /** redundant abstract modifier */
- abstract void c(); // violation
-
- /** redundant 'public' modifier */
- public float PI_PUBLIC = (float) 3.14; // violation
-
- /** redundant 'abstract' modifier (field can not be abstract) */
-// abstract float PI_ABSTRACT = (float) 3.14;
-
- /** redundant 'final' modifier */
- final float PI_FINAL = (float) 3.14; // violation
-
- /** all OK */
- float PI_OK = (float) 3.14;
- }
-
- /** redundant 'final' modifier */
- private final void method() // violation
- {
- }
-}
-
-/** Holder for redundant 'final' check. */
-final class RedundantFinalClass
-{
- /** redundant 'final' modifier */
- public final void finalMethod() // violation
- {
- }
-
- /** OK */
- public void method()
- {
- }
-}
-
-/** Holder for redundant modifiers of inner implementation */
-abstract interface InnerImplementation // violation
-{
- InnerImplementation inner =
- new InnerImplementation()
- {
- /** compiler requires 'public' modifier */
- public void method()
- {
- }
- };
-
- void method();
-}
-
-/** Holder for redundant modifiers of annotation fields/variables */
-@interface Annotation
-{
- public String s1 = ""; // violation
- final String s2 = ""; // violation
- static String s3 = ""; // violation
- String s4 = "";
- public String blah(); // violation
- abstract String blah2(); // violation
-}
-
-@interface MyAnnotation2 {
-}
-
-@interface MyAnnotation4 {
-}
-
-class SafeVarargsUsage {
- @Deprecated
- @SafeVarargs
- private final void foo(int... k) {}
-
- @Deprecated
- @SafeVarargs
- @SuppressWarnings("")
- private final void foo1(Object... obj) {}
-}