From cf72873535fcdf845c9de9683c6ca542ca8c1ee6 Mon Sep 17 00:00:00 2001 From: Roman Shevchenko Date: Sun, 7 Sep 2014 16:44:22 +0400 Subject: IDEA-127466 (test added) --- testData/src/pkg/TestCodeConstructs.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'testData/src/pkg') 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 -- cgit v1.2.3