/* 436 */ File dir = new File(patchURL.getFile());
/* 437 */ if (dir.exists())
/* */ {
/* 440 */ list.add(dir.toURL());
/* */
/* 443 */ File[] jars = dir.listFiles(new FileSuffixFilter(new String[] { ".jar", ".zip" }, true));
/* */
/* 445 */ for (int j = 0; (jars != null) && (j < jars.length); j++)
/* */ {
/* 447 */ list.add(jars[j].getCanonicalFile().toURL());
/* */ }