diff options
author | Roman Shevchenko <roman.shevchenko@jetbrains.com> | 2014-09-07 16:44:22 +0400 |
---|---|---|
committer | Roman Shevchenko <roman.shevchenko@jetbrains.com> | 2014-09-07 16:44:22 +0400 |
commit | cf72873535fcdf845c9de9683c6ca542ca8c1ee6 (patch) | |
tree | 63bfd957d8ea21cbb9ddf29b25c887c34ef1f1ad /testData/results | |
parent | 7a8097321fd5a06e195ef2327d797c5b9db799d8 (diff) | |
download | fernflower-cf72873535fcdf845c9de9683c6ca542ca8c1ee6.tar fernflower-cf72873535fcdf845c9de9683c6ca542ca8c1ee6.tar.gz fernflower-cf72873535fcdf845c9de9683c6ca542ca8c1ee6.tar.lz fernflower-cf72873535fcdf845c9de9683c6ca542ca8c1ee6.tar.xz fernflower-cf72873535fcdf845c9de9683c6ca542ca8c1ee6.zip |
IDEA-127466 (test added)
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++); } } |