}
}
- /**
- * {@inheritDoc} Visibility of a method has been relaxed to public.
- */
- @Override
- public void addURL(URL url) {
- super.addURL(url);
- }
-
- /**
- * {@inheritDoc} Visibility of a method has been relaxed to public.
- */
- @Override
- public Class<?> findClass(String name) throws ClassNotFoundException {
- return super.findClass(name);
- }
-
/**
* @return true, if class can be loaded from parent ClassLoader
*/
package org.sonar.runner.impl;
import java.io.File;
-import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
if (!"".equals(line)) {
String[] libAndHash = line.split("\\|");
String filename = libAndHash[0];
- String hash = libAndHash.length > 0 ? libAndHash[1] : null;
+ String hash = libAndHash.length > 0 ? libAndHash[1] : "";
files.add(fileCache.get(filename, hash, batchFileDownloader));
}
}