Varargs are only supported on 1.5+.
(Method m)
| 799 | |
| 800 | /** Varargs are only supported on 1.5+. */ |
| 801 | static boolean isVarArgs(Method m) { |
| 802 | return IS_VARARGS.isVarArgs(m); |
| 803 | } |
| 804 | |
| 805 | /** Varargs are only supported on 1.5+. */ |
| 806 | static int fixedArgs(Method m) { |
no outgoing calls
no test coverage detected