浏览代码

rebar_core: fix Dialyzer warning introduced in aa46d85 (#157)

pull/3/head
Tuncer Ayaz 11 年前
父节点
当前提交
37310820f7
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      src/rebar_core.erl

+ 1
- 1
src/rebar_core.erl 查看文件

@ -411,7 +411,7 @@ restore_code_path(no_change) ->
restore_code_path({added, Paths}) ->
%% Verify that all of the paths still exist -- some dynamically
%% added paths can get blown away during clean.
[code:del_path(F) || F <- Paths, erl_prim_loader_is_file(F)],
_ = [code:del_path(F) || F <- Paths, erl_prim_loader_is_file(F)],
ok.
erl_prim_loader_is_file(File) ->

正在加载...
取消
保存