aggregator: remove empty dispose function
authorTim-Philipp Müller <tim@centricular.com>
Wed, 31 Dec 2014 14:50:58 +0000 (14:50 +0000)
committerTim-Philipp Müller <tim@centricular.com>
Sat, 2 Dec 2017 15:10:26 +0000 (15:10 +0000)
libs/gst/base/gstaggregator.c

index 72cd8af073b2c19b4dd79b08061ed95158d95385..717afb3fc00e37983ec19e002d29fcfaec8e9aad 100644 (file)
@@ -1472,12 +1472,6 @@ gst_aggregator_finalize (GObject * object)
   G_OBJECT_CLASS (aggregator_parent_class)->finalize (object);
 }
 
-static void
-gst_aggregator_dispose (GObject * object)
-{
-  G_OBJECT_CLASS (aggregator_parent_class)->dispose (object);
-}
-
 /*
  * gst_aggregator_set_latency_property:
  * @agg: a #GstAggregator
@@ -1604,7 +1598,6 @@ gst_aggregator_class_init (GstAggregatorClass * klass)
   gobject_class->set_property = gst_aggregator_set_property;
   gobject_class->get_property = gst_aggregator_get_property;
   gobject_class->finalize = gst_aggregator_finalize;
-  gobject_class->dispose = gst_aggregator_dispose;
 
   g_object_class_install_property (gobject_class, PROP_LATENCY,
       g_param_spec_int64 ("latency", "Buffer latency",