*) ResourceInfoFactory.java: Bugfix for classNotFoundException

See: http://www.yacy-forum.de/viewtopic.php?t=2797

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2521 6c8d7289-2bf4-0310-a012-ef5d649a1542
This commit is contained in:
theli 2006-09-08 13:43:23 +00:00
parent c543028dd4
commit 33898ae7e9

View File

@ -61,6 +61,9 @@ public class ResourceInfoFactory {
String protocString = resourceURL.getProtocol();
// TODO: remove this
if (protocString.equals("https")) protocString = "http";
// the full qualified class name
String className = this.getClass().getPackage().getName() + "." + protocString + ".ResourceInfo";