(String name)
| 2243 | } |
| 2244 | |
| 2245 | static public Class loadClassForName(String name) { |
| 2246 | try |
| 2247 | { |
| 2248 | classForNameNonLoading(name); |
| 2249 | } |
| 2250 | catch(Exception e) |
| 2251 | { |
| 2252 | if (e instanceof ClassNotFoundException) |
| 2253 | return null; |
| 2254 | else |
| 2255 | throw Util.sneakyThrow(e); |
| 2256 | } |
| 2257 | return classForName(name); |
| 2258 | } |
| 2259 | |
| 2260 | static public float aget(float[] xs, int i){ |
| 2261 | return xs[i]; |
no test coverage detected