mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
fix testdata
This commit is contained in:
+3
-3
@@ -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, "");
|
||||
}
|
||||
|
||||
+3
-3
@@ -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, "");
|
||||
}
|
||||
|
||||
+2
-2
@@ -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, "");
|
||||
}
|
||||
|
||||
+2
-2
@@ -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, "");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user