diff options
author | Rob Bradford <rob@linux.intel.com> | 2010-09-06 12:02:39 +0100 |
---|---|---|
committer | Rob Bradford <rob@linux.intel.com> | 2010-09-06 12:10:29 +0100 |
commit | e7934a3f764313bc96b4c56c06cfc778f13bfbe4 (patch) | |
tree | 360dc74ce169f5dde1c594bf76e1dee44d879570 /rest/rest-proxy-call.c | |
parent | f84caf121e6af179dd6cc723fd6f5af5da7e0a86 (diff) |
proxy-call: Remove unused code post refactoring
The RestProxyCallClass is not needed in these functions any more since it is
accessed through prepare_message ()
Diffstat (limited to 'rest/rest-proxy-call.c')
-rw-r--r-- | rest/rest-proxy-call.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/rest/rest-proxy-call.c b/rest/rest-proxy-call.c index beff38a..7b57cb6 100644 --- a/rest/rest-proxy-call.c +++ b/rest/rest-proxy-call.c @@ -823,14 +823,12 @@ rest_proxy_call_async (RestProxyCall *call, GError **error) { RestProxyCallPrivate *priv; - RestProxyCallClass *call_class; SoupMessage *message; RestProxyCallAsyncClosure *closure; g_return_val_if_fail (REST_IS_PROXY_CALL (call), FALSE); priv = GET_PRIVATE (call); g_assert (priv->proxy); - call_class = REST_PROXY_CALL_GET_CLASS (call); if (priv->cur_call_closure) { @@ -918,14 +916,12 @@ rest_proxy_call_continuous (RestProxyCall *call, GError **error) { RestProxyCallPrivate *priv; - RestProxyCallClass *call_class; SoupMessage *message; RestProxyCallContinuousClosure *closure; g_return_val_if_fail (REST_IS_PROXY_CALL (call), FALSE); priv = GET_PRIVATE (call); g_assert (priv->proxy); - call_class = REST_PROXY_CALL_GET_CLASS (call); if (priv->cur_call_closure) { |