Fix StringBuilder.append generation

append(StringBuilder) is private and should not be called
This commit is contained in:
Alexander Udalov
2014-06-02 18:29:39 +04:00
parent 9dec0fb779
commit 69dd2bbf10
@@ -71,7 +71,6 @@ public class AsmUtil {
private static final Set<Type> STRING_BUILDER_OBJECT_APPEND_ARG_TYPES = Sets.newHashSet(
getType(String.class),
getType(StringBuilder.class),
getType(StringBuffer.class),
getType(CharSequence.class)
);