mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
change signature: java: store typed modifiers
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
public class Test {
|
||||
public void foo(<caret>) {
|
||||
}
|
||||
|
||||
void bar() {
|
||||
foo();
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
public class Test {
|
||||
public void foo(final int param) {
|
||||
}
|
||||
|
||||
void bar() {
|
||||
foo();
|
||||
}
|
||||
}
|
||||
@@ -91,6 +91,10 @@ public class ChangeSignatureGestureTest extends LightCodeInsightFixtureTestCase
|
||||
doTypingNoBorderTest("private");
|
||||
}
|
||||
|
||||
public void testAddParameterFinal() {
|
||||
doTypingTest("final int param");
|
||||
}
|
||||
|
||||
private void doTypingNoBorderTest(final String param) {
|
||||
doTest(new Runnable() {
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user