Actions
Bug #6088
closedThe use of depricated methods
Start date:
06/22/2015
Due date:
% Done:
100%
Estimated time:
Detected in build:
svn
Platform:
Published in build:
2.2.7
Description
The method toUrl
is depricated.
final URL url;
try {
url = file.toURL();
} catch (MalformedURLException e1) {
Logger.error(e1.getMessage());
return testBase;
}
final URL[] urls = new URL[]{url};
final ClassLoader loader = new URLClassLoader(urls);
Actions