Added getConfiguredIvyInstance(Task) method for backwards compatibility reasons.

git-svn-id: https://svn.apache.org/repos/asf/ant/ivy/core/trunk@1336547 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Maarten Coene 2012-05-10 09:16:10 +00:00
parent 318df20fe7
commit 2a0efba8fa
1 changed files with 7 additions and 0 deletions

View File

@ -247,6 +247,13 @@ public class IvyAntSettings extends DataType {
return ivyEngine;
}
/*
* Keep this for backwards compatibility!
*/
public Ivy getConfiguredIvyInstance(Task task) {
return getConfiguredIvyInstance((ProjectComponent) task);
}
void createIvyEngine(final ProjectComponent task) {
Project project = task.getProject();
Property prop = new Property() {