Two hard-coded unix-slashes.
In second place regex function replaceAll, changed to non-regex replace.
Can anybody make a patch?
net.sourceforge.wicketwiki.utils.GetImplementationsFromDir
protected String getRelativePath(File file) {
String path = file.getAbsolutePath();
int index = path.lastIndexOf("net"+File.separator+"sourceforge");
String name = path.substring(index);
return name;
}
-----------------------
net.sourceforge.wicketwiki.utils.GetImplementations
protected String convertFilePathToQualifiedJavaName(String name) {
name = name.substring(0, name.lastIndexOf("."));
name = name.replace( File.separator, ".");
return name;
}
Logged In: YES
user_id=1920388
Originator: YES
My patches was tested in files conditions (non-JAR)