juherr / pkgscanner

Automatically exported from code.google.com/p/pkgscanner
Apache License 2.0
0 stars 0 forks source link

Non file Class Elements causes scanning process to break #4

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
When non 'file' elements are on the classpath (such as in a webstart
environment) the package scanning process breaks with IllegalArgument
Exception.

Original issue reported on code.google.com by mattjens...@gmail.com on 6 Jul 2009 at 12:17

GoogleCodeExporter commented 9 years ago
In the webstart case, the elements that are in the classpath are http URLs.  
They
don't need to be scanned and can safely be skipped.  The main problem was the 
new
File(URL) (line 111) was throwing an IllegalArgumentException and causing the 
entire
process to stop.

Original comment by mattjens...@gmail.com on 6 Jul 2009 at 12:18

GoogleCodeExporter commented 9 years ago
Fixed in 0.7.8, it skips non-local class path elements

Original comment by mattjens...@gmail.com on 6 Jul 2009 at 2:54