provide fix all intention for local inspections paired to global tools (IDEA-162507)

This commit is contained in:
Anna.Kozlova
2016-10-17 19:33:20 +02:00
parent 0dbc270ac7
commit b815947ac2
4 changed files with 30 additions and 0 deletions

View File

@@ -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);
}
}

View File

@@ -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);
}
}