Does the type descriptor string describe a primitive type?
(String typeDescriptor)
| 1034 | * Does the type descriptor string describe a primitive type? |
| 1035 | */ |
| 1036 | private static boolean isPrimitive(String typeDescriptor) { |
| 1037 | return typeDescriptor.length() == 1; // right? |
| 1038 | } |
| 1039 | |
| 1040 | |
| 1041 | private static String[] getTypeDescriptors(Class[] cparams) { |
no outgoing calls
no test coverage detected