From 9e69c73387384d755d0dbb12bf9c91d6fd4ed4df Mon Sep 17 00:00:00 2001 From: "Pavel V. Talanov" Date: Mon, 12 Feb 2018 15:08:45 +0100 Subject: [PATCH] Minor: comment out test for KT-22594 to unmute it on teamcity #KT-22594 Open --- .../javaAgainstKotlin/UsingReadOnlyInterfaces.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/idea/testData/kotlinAndJavaChecker/javaAgainstKotlin/UsingReadOnlyInterfaces.java b/idea/testData/kotlinAndJavaChecker/javaAgainstKotlin/UsingReadOnlyInterfaces.java index f766ce471f3..a6b70eed4c2 100644 --- a/idea/testData/kotlinAndJavaChecker/javaAgainstKotlin/UsingReadOnlyInterfaces.java +++ b/idea/testData/kotlinAndJavaChecker/javaAgainstKotlin/UsingReadOnlyInterfaces.java @@ -6,7 +6,9 @@ public class UsingReadOnlyInterfaces { iCollection.add(elem); iCollection.isEmpty(); iCollection.clear(); - iCollection.getSize(); // this is not an error when analyzing against kotlin sources (which is a bug), this inconsistency is hard to fix with the current approach + // 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.size(); }