diff options
author | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2010-02-01 19:50:06 +0000 |
---|---|---|
committer | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2010-02-01 19:50:06 +0000 |
commit | 7385277cebe64fff044af60631675977a1980fd9 (patch) | |
tree | cb9b165586cebdc13db2e2937803f387d51f7ef3 /lasso/xml/soap_binding_usage_directive.c | |
parent | 2a7b411ea11f96c12d862b0d7d21cdb1c05fe454 (diff) | |
download | lasso-7385277cebe64fff044af60631675977a1980fd9.tar.gz lasso-7385277cebe64fff044af60631675977a1980fd9.tar.xz lasso-7385277cebe64fff044af60631675977a1980fd9.zip |
ID-WSF: remove useless new_from_message methods
Diffstat (limited to 'lasso/xml/soap_binding_usage_directive.c')
-rw-r--r-- | lasso/xml/soap_binding_usage_directive.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/lasso/xml/soap_binding_usage_directive.c b/lasso/xml/soap_binding_usage_directive.c index 753f63f6..625e4dd0 100644 --- a/lasso/xml/soap_binding_usage_directive.c +++ b/lasso/xml/soap_binding_usage_directive.c @@ -114,16 +114,3 @@ lasso_soap_binding_usage_directive_new(const gchar *ref) return node; } - -LassoSoapBindingUsageDirective* -lasso_soap_binding_usage_directive_new_from_message(const gchar *message) -{ - LassoSoapBindingUsageDirective *node; - - g_return_val_if_fail(message != NULL, NULL); - - node = g_object_new(LASSO_TYPE_SOAP_BINDING_USAGE_DIRECTIVE, NULL); - lasso_node_init_from_message(LASSO_NODE(node), message); - - return node; -} |