fix testdata

This commit is contained in:
Anna Kozlova
2018-12-28 21:30:43 +01:00
parent ac3e8c82c8
commit 4d6dd142f0
4 changed files with 10 additions and 10 deletions
@@ -1,11 +1,11 @@
// "Add 'Foo<TypeParamName>' as 1st parameter to method 'Bar'" "true"
// "Add 'Foo' as 1st parameter to method 'Bar'" "true"
public class Bar {
Bar(Foo<TypeParamName> typeParamNameFoo, String args) {
Bar(Foo foo, String args) {
}
}
class Foo<TypeParamName> {
class Foo {
void bar() {
Bar bar = new Bar(this, "");
}
@@ -1,11 +1,11 @@
// "Add 'Foo<TypeParamName>' as 1st parameter to method 'bar'" "true"
// "Add 'Foo' as 1st parameter to method 'bar'" "true"
public class Bar {
static void bar(Foo<TypeParamName> typeParamNameFoo, String args) {
static void bar(Foo foo, String args) {
}
}
class Foo<TypeParamName> {
class Foo {
void bar() {
Bar.bar(this, "");
}
@@ -1,11 +1,11 @@
// "Add 'Foo<TypeParamName>' as 1st parameter to method 'Bar'" "true"
// "Add 'Foo' as 1st parameter to method 'Bar'" "true"
public class Bar {
Bar(String args) {
}
}
class Foo<TypeParamName> {
class Foo {
void bar() {
Bar bar = new Bar(th<caret>is, "");
}
@@ -1,11 +1,11 @@
// "Add 'Foo<TypeParamName>' as 1st parameter to method 'bar'" "true"
// "Add 'Foo' as 1st parameter to method 'bar'" "true"
public class Bar {
static void bar(String args) {
}
}
class Foo<TypeParamName> {
class Foo {
void bar() {
Bar.bar(th<caret>is, "");
}