mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-26 19:06:24 +07:00
inline parameter: make it public; allow to inline refs to the same non final fields; allow to inline different constants with the same value (IDEA-40700)
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
public class Subject {
|
||||
private int myInt;
|
||||
private int t;
|
||||
|
||||
public void wp(int <caret>p) {
|
||||
myInt += p;
|
||||
}
|
||||
|
||||
void foo() {
|
||||
wp(t);
|
||||
wp(t);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user