Remove never matching clause

This commit is contained in:
Tuncer Ayaz 2010-10-01 14:26:38 +02:00
parent 778d4350b3
commit 851c602b20

View file

@ -75,9 +75,7 @@ analyze(Config, File) ->
{error, read_error} -> {error, read_error} ->
?ABORT("Unable to read PLT ~n~n", [Plt]); ?ABORT("Unable to read PLT ~n~n", [Plt]);
{error, not_valid} -> {error, not_valid} ->
?ABORT("The PLT ~s is not valid.~n", [Plt]); ?ABORT("The PLT ~s is not valid.~n", [Plt])
{error, _Reason} ->
?ABORT("Unable to determine the validity of the PLT ~s~n", [Plt])
end, end,
ok. ok.