Skip to content

Commit

Permalink
ToolLoader: removed unused method
Browse files Browse the repository at this point in the history
  • Loading branch information
FroMage committed May 6, 2014
1 parent 1a31c15 commit d4a9d4e
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/com/redhat/ceylon/common/tool/ToolLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -117,18 +117,6 @@ private <T extends Tool> ToolModel<T> loadScriptTool(String className, String to
return model;
}

private static URL[] makeClasspath(File... jars) {
URL[] urls = new URL[jars.length];
for (int ii = 0; ii <jars.length; ii++) {
try {
urls[ii] = jars[ii].toURI().toURL();
} catch (MalformedURLException e) {
throw new ToolException(e);
}
}
return urls;
}

private <T extends Tool> ToolModel<T> loadModel(Class<T> cls, String toolName) {
checkClass(cls);
ToolModel<T> model = new ToolModel<T>();
Expand Down

0 comments on commit d4a9d4e

Please sign in to comment.