call map(url) for each url in the array
( URL [] urls )
| 339 | call map(url) for each url in the array |
| 340 | */ |
| 341 | synchronized void map( URL [] urls ) |
| 342 | { |
| 343 | for(int i=0; i< urls.length; i++) |
| 344 | try{ |
| 345 | map( urls[i] ); |
| 346 | } catch ( IOException e ) { |
| 347 | String s = "Error constructing classpath: " +urls[i]+": "+e; |
| 348 | errorWhileMapping( s ); |
| 349 | } |
| 350 | } |
| 351 | |
| 352 | synchronized void map( URL url ) |
| 353 | throws IOException |
no test coverage detected