mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
inline parameter: allow to inline as local for methods with usages (IDEA-65536) ; respect write access for parameters with constant values ( IDEA-65535)
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
class Base {
|
||||
public Base() {
|
||||
}
|
||||
}
|
||||
|
||||
class Inheritor extends Base {
|
||||
public Inheritor(String b<caret>ar) {
|
||||
super();
|
||||
System.out.println(bar);
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
new Inheritor("bar".toString());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user