summaryrefslogtreecommitdiffstats
path: root/testData/src/pkg/TestCodeConstructs.java
diff options
context:
space:
mode:
authorRoman Shevchenko <roman.shevchenko@jetbrains.com>2014-09-07 16:44:22 +0400
committerRoman Shevchenko <roman.shevchenko@jetbrains.com>2014-09-07 16:44:22 +0400
commitcf72873535fcdf845c9de9683c6ca542ca8c1ee6 (patch)
tree63bfd957d8ea21cbb9ddf29b25c887c34ef1f1ad /testData/src/pkg/TestCodeConstructs.java
parent7a8097321fd5a06e195ef2327d797c5b9db799d8 (diff)
downloadfernflower-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/src/pkg/TestCodeConstructs.java')
-rw-r--r--testData/src/pkg/TestCodeConstructs.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/testData/src/pkg/TestCodeConstructs.java b/testData/src/pkg/TestCodeConstructs.java
index 3c0ad53..fd903e4 100644
--- a/testData/src/pkg/TestCodeConstructs.java
+++ b/testData/src/pkg/TestCodeConstructs.java
@@ -21,8 +21,7 @@ class TestCodeConstructs {
}
private int count = 0;
- String fieldIncrement() {
- int id = count++;
- return "id:" + id;
+ Integer fieldIncrement() {
+ return new Integer(count++);
}
} \ No newline at end of file