aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/indentation
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/resources/com/puppycrawl/tools/checkstyle/checks/indentation')
-rw-r--r--src/test/resources/com/puppycrawl/tools/checkstyle/checks/indentation/InputFinalInDefaultMethods.java2
-rw-r--r--src/test/resources/com/puppycrawl/tools/checkstyle/checks/indentation/InputLambda1.java2
-rw-r--r--src/test/resources/com/puppycrawl/tools/checkstyle/checks/indentation/InputLambda2.java3
-rw-r--r--src/test/resources/com/puppycrawl/tools/checkstyle/checks/indentation/InputNewHandler.java2
4 files changed, 5 insertions, 4 deletions
diff --git a/src/test/resources/com/puppycrawl/tools/checkstyle/checks/indentation/InputFinalInDefaultMethods.java b/src/test/resources/com/puppycrawl/tools/checkstyle/checks/indentation/InputFinalInDefaultMethods.java
index 519f67040..a863b94a2 100644
--- a/src/test/resources/com/puppycrawl/tools/checkstyle/checks/indentation/InputFinalInDefaultMethods.java
+++ b/src/test/resources/com/puppycrawl/tools/checkstyle/checks/indentation/InputFinalInDefaultMethods.java
@@ -1,4 +1,4 @@
-//Compilable with Java8 //indent:0 exp:0
+//a comment //indent:0 exp:0
package com.puppycrawl.tools.checkstyle.checks.indentation; //indent:0 exp:0
import java.util.ArrayList; //indent:0 exp:0
diff --git a/src/test/resources/com/puppycrawl/tools/checkstyle/checks/indentation/InputLambda1.java b/src/test/resources/com/puppycrawl/tools/checkstyle/checks/indentation/InputLambda1.java
index dede16b7f..35c3ce3d3 100644
--- a/src/test/resources/com/puppycrawl/tools/checkstyle/checks/indentation/InputLambda1.java
+++ b/src/test/resources/com/puppycrawl/tools/checkstyle/checks/indentation/InputLambda1.java
@@ -1,4 +1,4 @@
-//Compilable with Java8 //indent:0 exp:0
+//a comment //indent:0 exp:0
package com.puppycrawl.tools.checkstyle.checks.indentation; //indent:0 exp:0
import java.util.ArrayList; //indent:0 exp:0
diff --git a/src/test/resources/com/puppycrawl/tools/checkstyle/checks/indentation/InputLambda2.java b/src/test/resources/com/puppycrawl/tools/checkstyle/checks/indentation/InputLambda2.java
index 9bbf86617..a7c89036c 100644
--- a/src/test/resources/com/puppycrawl/tools/checkstyle/checks/indentation/InputLambda2.java
+++ b/src/test/resources/com/puppycrawl/tools/checkstyle/checks/indentation/InputLambda2.java
@@ -1,9 +1,10 @@
-//Compilable with Java8 //indent:0 exp:0
+//a comment //indent:0 exp:0
package com.puppycrawl.tools.checkstyle.checks.indentation; //indent:0 exp:0
import java.util.function.BinaryOperator; //indent:0 exp:0
import java.util.function.Consumer; //indent:0 exp:0
+
public class InputLambda2 { //indent:0 exp:0
public <T> Consumer<Integer> params(Consumer<Integer> f1, Consumer<Integer> f2) { //indent:4 exp:4
return f2; //indent:8 exp:8
diff --git a/src/test/resources/com/puppycrawl/tools/checkstyle/checks/indentation/InputNewHandler.java b/src/test/resources/com/puppycrawl/tools/checkstyle/checks/indentation/InputNewHandler.java
index 594b7c168..61bb44041 100644
--- a/src/test/resources/com/puppycrawl/tools/checkstyle/checks/indentation/InputNewHandler.java
+++ b/src/test/resources/com/puppycrawl/tools/checkstyle/checks/indentation/InputNewHandler.java
@@ -1,9 +1,9 @@
-//Compilable with Java8
package com.puppycrawl.tools.checkstyle.checks.indentation;
import java.util.ArrayList;
import java.util.function.Supplier;
+
/**
*
* @author IljaDubinin