fixed incorrect constructor method reference

This commit is contained in:
md_5 2017-10-28 18:56:11 +11:00
parent cbcd1a61d6
commit 45e71011d1

View File

@ -111,7 +111,7 @@ public class ClassWriter {
} }
buffer.append("::"); buffer.append("::");
buffer.append(node.lambda_information.content_method_name); buffer.append("<init>".equals(node.lambda_information.content_method_name) ? "new" : node.lambda_information.content_method_name);
} }
else { else {
// lambda method // lambda method