~ubuntu-branches/ubuntu/trusty/ivy/trusty-proposed

« back to all changes in this revision

Viewing changes to src/java/org/apache/ivy/ant/IvyFindRevision.java

  • Committer: Package Import Robot
  • Author(s): tony mancill
  • Date: 2013-05-15 17:44:57 UTC
  • mfrom: (3.1.2 experimental)
  • Revision ID: package-import@ubuntu.com-20130515174457-ogntd0vxluwalq11
Tags: 2.3.0-2
* Team upload.
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
93
93
        Ivy ivy = getIvyInstance();
94
94
        IvySettings settings = ivy.getSettings();
95
95
        if (branch == null) {
96
 
            settings.getDefaultBranch(new ModuleId(organisation, module));
 
96
            branch = settings.getDefaultBranch(new ModuleId(organisation, module));
97
97
        }
98
98
        ResolvedModuleRevision rmr = ivy.findModule(ModuleRevisionId.newInstance(organisation,
99
99
            module, branch, revision));