inline parameter: make it public; allow to inline refs to the same non final fields...
[fedora-idea.git] / java / java-tests / testData / refactoring / inlineParameter / RefSameNonFinalField.java
blob6a8a8a13c844e6cc9cabee45d91d2585cc149105
1 public class Subject {
2 private int myInt;
3 private int t;
5 public void wp(int <caret>p) {
6 myInt += p;
9 void foo() {
10 wp(t);
11 wp(t);