summaryrefslogtreecommitdiff
path: root/src/rebar_prv_unlock.erl
diff options
context:
space:
mode:
authorFred Hebert <mononcqc@ferd.ca>2018-04-20 16:46:07 -0700
committerGitHub <noreply@github.com>2018-04-20 16:46:07 -0700
commit9cfe33f97e83f060cb4394f0089c2998994af7f4 (patch)
tree9244942b18f30ac7dc125010eb4acefe0e440b85 /src/rebar_prv_unlock.erl
parenta73deb79cdeab9430972e6185b178aaa82ef00d4 (diff)
parentf74b69b2f4129b4857eddb0c066808b4b835cf19 (diff)
Merge pull request #1757 from ferd/fix-dialyzer-warnings
Fix various Dialyzer warnings
Diffstat (limited to 'src/rebar_prv_unlock.erl')
-rw-r--r--src/rebar_prv_unlock.erl8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/rebar_prv_unlock.erl b/src/rebar_prv_unlock.erl
index 8480991..6fe8bd8 100644
--- a/src/rebar_prv_unlock.erl
+++ b/src/rebar_prv_unlock.erl
@@ -48,12 +48,8 @@ do(State) ->
?PRV_ERROR({file,Reason});
{ok, _} ->
Locks = rebar_config:consult_lock_file(LockFile),
- case handle_unlocks(State, Locks, LockFile) of
- {ok, NewLocks} ->
- {ok, rebar_state:set(State, {locks, default}, NewLocks)};
- {error, Reason} ->
- ?PRV_ERROR({file,Reason})
- end
+ {ok, NewLocks} = handle_unlocks(State, Locks, LockFile),
+ {ok, rebar_state:set(State, {locks, default}, NewLocks)}
end.
-spec format_error(any()) -> iolist().