inplaceIntroduceField#replaceAll_after: variable name changed after mockJdk version updated

This commit is contained in:
Tagir Valeev
2017-03-06 17:57:41 +07:00
parent 90a40266e3
commit 2c5949a2bb
@@ -15,11 +15,11 @@
*/
class Test {
private String x;
private String s;
void simpleMethod() {
x = "";
System.out.println(x);
System.out.println(x);
s = "";
System.out.println(s);
System.out.println(s);
}
}