testdata fixed according to new code style

This commit is contained in:
Anna Kozlova
2012-08-27 20:37:38 +04:00
parent c08e6b7183
commit 2956c09aff
13 changed files with 13 additions and 13 deletions
@@ -1,7 +1,7 @@
// "Replace with lambda" "true"
class Test {
{
Comparable<String> c = o->{
Comparable<String> c = o -> {
return 0;
};
}
@@ -1,7 +1,7 @@
// "Replace with lambda" "true"
class Test {
{
Comparable<String> c = o->{
Comparable<String> c = o -> {
Runnable r = new Runnable() {
@Override
public void run() {
@@ -9,7 +9,7 @@ class Test2 {
static <T> I<T> bar(I<T> i){return i;}
{
bar((List<String> list)->{
bar((List<String> list) -> {
return null; //To change body of implemented methods use File | Settings | File Templates.
});
}
@@ -1,7 +1,7 @@
// "Replace with lambda" "true"
class Test {
{
Runnable r = ()->{
Runnable r = () -> {
System.out.println("");
};
}
@@ -1,7 +1,7 @@
// "Replace with lambda" "true"
class Test {
{
Runnable[] r = new Runnable[] {()->{
Runnable[] r = new Runnable[] {() -> {
System.out.println("");
}};
}