summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimm Bäder <mail@baedert.org>2016-04-20 09:36:47 +0200
committerChristophe Fergeau <cfergeau@redhat.com>2016-06-16 15:01:13 +0200
commit824d78ee3f889dc7614746edcd822f68dee78962 (patch)
treec91ecdb3416c9f93748d7aec658ae63701efdbd4
parent7880b6c31ad2a4bcf6a8b0308e6a3d50ae53c302 (diff)
downloadlibrest-824d78ee3f889dc7614746edcd822f68dee78962.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 */