mirror of
https://github.com/moparisthebest/fernflower
synced 2024-11-22 09:12:17 -05:00
IDEA-127466 (test added)
This commit is contained in:
parent
7a8097321f
commit
cf72873535
Binary file not shown.
@ -7,8 +7,7 @@ class TestCodeConstructs {
|
|||||||
(new String()).hashCode();
|
(new String()).hashCode();
|
||||||
}
|
}
|
||||||
|
|
||||||
String fieldIncrement() {
|
Integer fieldIncrement() {
|
||||||
int var1 = this.count++;
|
return new Integer(this.count++);
|
||||||
return "id:" + var1;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -21,8 +21,7 @@ class TestCodeConstructs {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private int count = 0;
|
private int count = 0;
|
||||||
String fieldIncrement() {
|
Integer fieldIncrement() {
|
||||||
int id = count++;
|
return new Integer(count++);
|
||||||
return "id:" + id;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user