summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimm Bäder <mail@baedert.org>2016-04-20 09:36:47 +0200
committerTimm Bäder <mail@baedert.org>2016-04-20 09:36:47 +0200
commit1bf068df38c5319e0b429e2b987f7e0226a980ac (patch)
treed1034c532e870b2e0c8fccee6caf0183804de316
parente412da58080eec2e771482e7e4c509b9e71477ff (diff)
downloadlibrest-1bf068df38c5319e0b429e2b987f7e0226a980ac.tar.gz
oauth-proxy-call: Remove _parse_token_reponse
An equivalent _parse_token_response exists that does not contain a typo.
-rw-r--r--rest/oauth-proxy-call.c9
-rw-r--r--rest/oauth-proxy-call.h3
2 files changed, 0 insertions, 12 deletions
diff --git a/rest/oauth-proxy-call.c b/rest/oauth-proxy-call.c
index 61c577c..fc35bd4 100644
--- a/rest/oauth-proxy-call.c
+++ b/rest/oauth-proxy-call.c
@@ -352,15 +352,6 @@ oauth_proxy_call_parse_token_response (OAuthProxyCall *call)
g_hash_table_destroy (form);
}
-/*
- * Stub to keep ABI because this was the original (typo'd) function name.
- */
-void
-oauth_proxy_call_parse_token_reponse (OAuthProxyCall *call)
-{
- oauth_proxy_call_parse_token_response (call);
-}
-
#if BUILD_TESTS
/* Test cases from http://wiki.oauth.net/TestCases */
void
diff --git a/rest/oauth-proxy-call.h b/rest/oauth-proxy-call.h
index 243aac0..4e584d7 100644
--- a/rest/oauth-proxy-call.h
+++ b/rest/oauth-proxy-call.h
@@ -64,9 +64,6 @@ GType oauth_proxy_call_get_type (void);
void oauth_proxy_call_parse_token_response (OAuthProxyCall *call);
-G_GNUC_DEPRECATED_FOR(oauth_proxy_call_parse_token_response)
-void oauth_proxy_call_parse_token_reponse (OAuthProxyCall *call);
-
G_END_DECLS
#endif /* _OAUTH_PROXY_CALL */