mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-13 21:55:01 +07:00
disable create method from usage/change signature based on void argument (IDEA-205710)
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
// "Change 1st parameter of method 'foo' from 'String' to 'void'" "false"
|
||||
public class S {
|
||||
void bar() {}
|
||||
void foo(String s) {}
|
||||
{
|
||||
foo(b<caret>ar());
|
||||
}
|
||||
}
|
||||
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
// "Create method 'bar'" "false"
|
||||
class Test {
|
||||
{
|
||||
ba<caret>r(foo());
|
||||
}
|
||||
|
||||
void foo() {}
|
||||
}
|
||||
Reference in New Issue
Block a user