( File dir )
| 437 | // Begin Static stuff |
| 438 | |
| 439 | static String [] traverseDirForClasses( File dir ) |
| 440 | throws IOException |
| 441 | { |
| 442 | List list = traverseDirForClassesAux( dir, dir ); |
| 443 | return (String[])list.toArray( new String[0] ); |
| 444 | } |
| 445 | |
| 446 | static List traverseDirForClassesAux( File topDir, File dir ) |
| 447 | throws IOException |
no test coverage detected