mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-29 18:01:16 +07:00
generate setter prototype from field: take context into account to gic resulted method correct parameter type (IDEA-104592)
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
// "Create getter and setter for 's'" "false"
|
||||
class A<T> {
|
||||
private T <caret>s;
|
||||
|
||||
T getS() {
|
||||
return s;
|
||||
}
|
||||
|
||||
void setS(T s) {
|
||||
this.s = s;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user