summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2015-08-17 17:11:10 -0500
committerTristan Sloughter <t@crashfast.com>2015-08-17 17:11:10 -0500
commit1f72ddf04277322a162ff3235f029f28541a2c14 (patch)
treea6866fa58f570737fa8b2968617fa9ac017542ba
parentad463398dcc4b0d652218d20f79cc010d2767b37 (diff)
remove commented out code
-rw-r--r--src/rebar_prv_install_deps.erl3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/rebar_prv_install_deps.erl b/src/rebar_prv_install_deps.erl
index e790dc9..11a4250 100644
--- a/src/rebar_prv_install_deps.erl
+++ b/src/rebar_prv_install_deps.erl
@@ -157,10 +157,7 @@ deps_per_profile(Profiles, Upgrade, State) ->
handle_profile_pkg_level(PkgDeps1, AllApps, Seen, Upgrade, Locks, State1).
parse_profile_deps(State, Profile, Level) ->
- %DepsDir = profile_dep_dir(State, Profile),
Locks = rebar_state:get(State, {locks, Profile}, []),
- %Deps = rebar_state:get(State, {deps, Profile}, []),
- %{SrcDeps, PkgDeps} = parse_deps(DepsDir, Deps, State, Locks, Level),
{SrcDeps, PkgDeps} = rebar_state:get(State, {parsed_deps, Profile}, {[], []}),
{{Profile, SrcDeps, Locks, Level}, {Profile, Level, PkgDeps}}.