From f4c2ee74669a9e89de9282e74a3a3e2bcd2eb22c Mon Sep 17 00:00:00 2001 From: Eduardo Gurgel Date: Tue, 31 Dec 2013 14:07:30 -0300 Subject: [PATCH] Remove warnings Unused stuff --- lib/httparrot/basic_auth_handler.ex | 2 -- lib/httparrot/post_handler.ex | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/httparrot/basic_auth_handler.ex b/lib/httparrot/basic_auth_handler.ex index 2920c11..fbb18b2 100644 --- a/lib/httparrot/basic_auth_handler.ex +++ b/lib/httparrot/basic_auth_handler.ex @@ -1,6 +1,4 @@ defmodule HTTParrot.BasicAuthHandler do - alias HTTParrot.GeneralRequestInfo - def init(_transport, _req, _opts) do {:upgrade, :protocol, :cowboy_rest} end diff --git a/lib/httparrot/post_handler.ex b/lib/httparrot/post_handler.ex index c3e4d30..2eadb96 100644 --- a/lib/httparrot/post_handler.ex +++ b/lib/httparrot/post_handler.ex @@ -13,12 +13,12 @@ defmodule HTTParrot.PostHandler do {{"application", "x-www-form-urlencoded", :*}, :post_form}], req, state} end - def post_form(req, state) do + def post_form(req, _state) do {:ok, body, req} = :cowboy_req.body_qs(req) post(req, [form: body, data: "", json: nil]) end - def post_json(req, state) do + def post_json(req, _state) do {:ok, body, req} = :cowboy_req.body(req) post(req, [form: [{}], data: body, json: JSEX.decode!(body)]) end