aboutsummaryrefslogtreecommitdiff
path: root/libmm-glib/mm-bearer-properties.c
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@aleksander.es>2019-10-25 13:36:32 +0200
committerAleksander Morgado <aleksander@aleksander.es>2019-10-28 10:28:31 +0100
commit651028c2b7b205f713e49df373d4bd016364c547 (patch)
treee80fb0cba97c80255ce65473e7b5b6ee1e4621be /libmm-glib/mm-bearer-properties.c
parent856619535d2af66a2793bdf4bedaaa3fc7810a73 (diff)
libmm-glib: remove unused _dup() methods
Diffstat (limited to 'libmm-glib/mm-bearer-properties.c')
-rw-r--r--libmm-glib/mm-bearer-properties.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/libmm-glib/mm-bearer-properties.c b/libmm-glib/mm-bearer-properties.c
index 5c2b8ae6..22c31948 100644
--- a/libmm-glib/mm-bearer-properties.c
+++ b/libmm-glib/mm-bearer-properties.c
@@ -652,25 +652,6 @@ mm_bearer_properties_new_from_dictionary (GVariant *dictionary,
/*****************************************************************************/
-MMBearerProperties *
-mm_bearer_properties_dup (MMBearerProperties *orig)
-{
- GVariant *dict;
- MMBearerProperties *copy;
- GError *error = NULL;
-
- g_return_val_if_fail (MM_IS_BEARER_PROPERTIES (orig), NULL);
-
- dict = mm_bearer_properties_get_dictionary (orig);
- copy = mm_bearer_properties_new_from_dictionary (dict, &error);
- g_assert_no_error (error);
- g_variant_unref (dict);
-
- return copy;
-}
-
-/*****************************************************************************/
-
gboolean
mm_bearer_properties_cmp (MMBearerProperties *a,
MMBearerProperties *b)