diff options
author | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2010-10-01 14:26:38 +0200 |
---|---|---|
committer | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2010-10-01 14:26:38 +0200 |
commit | 851c602b2058ac71b6d9bf1d55f93cb9739b4f33 (patch) | |
tree | 1979aab6cd281d869ea8932404c932f2d00820a8 /src | |
parent | 778d4350b375370ca340038ff602a34ffb30cad9 (diff) |
Remove never matching clause
Diffstat (limited to 'src')
-rw-r--r-- | src/rebar_dialyzer.erl | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/rebar_dialyzer.erl b/src/rebar_dialyzer.erl index 0604b4e..de78a05 100644 --- a/src/rebar_dialyzer.erl +++ b/src/rebar_dialyzer.erl @@ -75,9 +75,7 @@ analyze(Config, File) -> {error, read_error} -> ?ABORT("Unable to read PLT ~n~n", [Plt]); {error, not_valid} -> - ?ABORT("The PLT ~s is not valid.~n", [Plt]); - {error, _Reason} -> - ?ABORT("Unable to determine the validity of the PLT ~s~n", [Plt]) + ?ABORT("The PLT ~s is not valid.~n", [Plt]) end, ok. |