diff options
Diffstat (limited to 'testData/results')
-rw-r--r-- | testData/results/TestCodeConstructs.dec | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/testData/results/TestCodeConstructs.dec b/testData/results/TestCodeConstructs.dec index d2d5c75..eb9de8d 100644 --- a/testData/results/TestCodeConstructs.dec +++ b/testData/results/TestCodeConstructs.dec @@ -7,8 +7,7 @@ class TestCodeConstructs { (new String()).hashCode(); } - String fieldIncrement() { - int var1 = this.count++; - return "id:" + var1; + Integer fieldIncrement() { + return new Integer(this.count++); } } |