|
|
|
@ -75,7 +75,7 @@ public class JarLoader { |
|
|
|
|
|
|
|
|
|
|
|
public Spider getSpider(String key, String ext) { |
|
|
|
public Spider getSpider(String key, String ext) { |
|
|
|
String clsKey = key.replace("csp_", ""); |
|
|
|
String clsKey = key.replace("csp_", ""); |
|
|
|
if (spiders.contains(clsKey)) |
|
|
|
if (spiders.containsKey(clsKey)) |
|
|
|
return spiders.get(clsKey); |
|
|
|
return spiders.get(clsKey); |
|
|
|
if (classLoader == null) |
|
|
|
if (classLoader == null) |
|
|
|
return new SpiderNull(); |
|
|
|
return new SpiderNull(); |
|
|
|
|