summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/completion/smartType/ExpectedReturnType-out.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/java-tests/testData/codeInsight/completion/smartType/ExpectedReturnType-out.java')
-rw-r--r--java/java-tests/testData/codeInsight/completion/smartType/ExpectedReturnType-out.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/java-tests/testData/codeInsight/completion/smartType/ExpectedReturnType-out.java b/java/java-tests/testData/codeInsight/completion/smartType/ExpectedReturnType-out.java
index c96328d6c192..a99c498bb8bb 100644
--- a/java/java-tests/testData/codeInsight/completion/smartType/ExpectedReturnType-out.java
+++ b/java/java-tests/testData/codeInsight/completion/smartType/ExpectedReturnType-out.java
@@ -19,7 +19,7 @@ interface I {
public class Test {
public int m() {
I i = s -> {
- return s.contains();
+ return s.isEmpty();
};
return 0;
}