Juan Jose Comellas

Results 3 issues of Juan Jose Comellas

Could you please publish a new hex package with the latest changes? Thanks.

Dialyzer is returning the following error when checking `lib/entry.ex`: ``` lib/entry.ex:291:pattern_match_cov The pattern variable_ can never match, because previous clauses completely cover the type {:ok, _}. ``` This is happening...

A call to [Poison.decode!/2](https://github.com/devinus/poison/blob/master/lib/poison.ex#L84-L89) with `%{as: struct}` as option ends up calling: 1. [Poison.Parser.parse!/2](https://github.com/devinus/poison/blob/master/lib/poison/parser.ex#L60) 2. [Poison.Decode.transform/2](https://github.com/devinus/poison/blob/master/lib/poison/decoder.ex#L20-L25) 3. [Poison.Decoder.decode/2](https://github.com/devinus/poison/blob/master/lib/poison/decoder.ex#L118) The problem is that `Poison.Decode.transform/2` ends up calling `Poison.Decoder.decode/2` [here](https://github.com/devinus/poison/blob/master/lib/poison/decoder.ex#L102). This means...