From 69dd2bbf10244f05e0ad91d28a8ba54e288cb14d Mon Sep 17 00:00:00 2001 From: Alexander Udalov Date: Mon, 2 Jun 2014 18:29:39 +0400 Subject: [PATCH] Fix StringBuilder.append generation append(StringBuilder) is private and should not be called --- compiler/backend/src/org/jetbrains/jet/codegen/AsmUtil.java | 1 - 1 file changed, 1 deletion(-) diff --git a/compiler/backend/src/org/jetbrains/jet/codegen/AsmUtil.java b/compiler/backend/src/org/jetbrains/jet/codegen/AsmUtil.java index 8e2418b9070..e9ed5da8688 100644 --- a/compiler/backend/src/org/jetbrains/jet/codegen/AsmUtil.java +++ b/compiler/backend/src/org/jetbrains/jet/codegen/AsmUtil.java @@ -71,7 +71,6 @@ public class AsmUtil { private static final Set STRING_BUILDER_OBJECT_APPEND_ARG_TYPES = Sets.newHashSet( getType(String.class), - getType(StringBuilder.class), getType(StringBuffer.class), getType(CharSequence.class) );