mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
provide fix all intention for local inspections paired to global tools (IDEA-162507)
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
// "Fix all 'Member access can be tightened' problems in file" "true"
|
||||
class Test {
|
||||
private int myCounter;
|
||||
|
||||
public static void main(String[] args) {
|
||||
System.out.println(new Test().myCounter);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
// "Fix all 'Member access can be tightened' problems in file" "true"
|
||||
class Test {
|
||||
<caret>public int myCounter;
|
||||
|
||||
public static void main(String[] args) {
|
||||
System.out.println(new Test().myCounter);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user