should handle void return type

This commit is contained in:
金戟 2021-03-04 10:00:07 +08:00
parent e46ec3d98a
commit 40073ad784

View File

@ -163,6 +163,9 @@ public class MethodUtil {
case TYPE_ARRAY:
isArray = true;
break;
case TYPE_VOID:
sb.append(",void");
break;
case TYPE_BYTE:
sb.append(",byte").append(isArray ? "[]" : "");
isArray = false;