remove stray tabs

This commit is contained in:
alisdair sullivan 2013-02-09 09:44:45 -08:00
parent d3fd69a351
commit d9e0611a52
2 changed files with 25 additions and 26 deletions

View file

@ -119,9 +119,8 @@ list([Value], {Handler, State}, Opts) ->
list([], {Handler, State}, _Opts) -> Handler:handle_event(end_array, State);
list(Term, Handler, Opts) -> ?error([Term, Handler, Opts]).
pre_encode(Value, #opts{pre_encode=false}) -> Value;
pre_encode(Value, Opts) -> (Opts#opts.pre_encode)(Value).
pre_encode(Value, #opts{pre_encode=false}) -> Value; pre_encode(Value, Opts) ->
(Opts#opts.pre_encode)(Value).
fix_key(Key) when is_atom(Key) -> fix_key(atom_to_binary(Key, utf8));