From 8ac7f0b5926ea791bded4308bd7b87a1bb30e548 Mon Sep 17 00:00:00 2001 From: "Pavel V. Talanov" Date: Mon, 12 Feb 2018 16:46:16 +0100 Subject: [PATCH] Minor: remove error marker from commented out test code --- .../javaAgainstKotlin/UsingReadOnlyInterfaces.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idea/testData/kotlinAndJavaChecker/javaAgainstKotlin/UsingReadOnlyInterfaces.java b/idea/testData/kotlinAndJavaChecker/javaAgainstKotlin/UsingReadOnlyInterfaces.java index a6b70eed4c2..afaa4037d74 100644 --- a/idea/testData/kotlinAndJavaChecker/javaAgainstKotlin/UsingReadOnlyInterfaces.java +++ b/idea/testData/kotlinAndJavaChecker/javaAgainstKotlin/UsingReadOnlyInterfaces.java @@ -8,7 +8,7 @@ public class UsingReadOnlyInterfaces { iCollection.clear(); // this is not an error when analyzing against kotlin sources (which is a bug), this inconsistency is hard to fix with the current approach // KT-22594 - // iCollection.getSize(); + // iCollection.getSize(); iCollection.size(); }