diff options
| author | 2017-10-13 15:54:03 -0700 | |
|---|---|---|
| committer | 2017-10-13 15:57:48 -0700 | |
| commit | f12b5c6789aa4145fb572cbdfa5e1aec9a1cbd33 (patch) | |
| tree | a41898b13b72502526c82f97ba8ef5f19214d6e5 | |
| parent | 478edb7604c3824b27ee7457483731ad55d93d24 (diff) | |
Removes redundant RefBase inheritance.
PackageInfoListener already inherits from RefBase, so the
MetricsProducer doesn't need it also.
Test: Not needed.
Change-Id: I27fc4c214251ba07fefeacf76549a80c8368ffa5
| -rw-r--r-- | cmds/statsd/src/metrics/MetricProducer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/statsd/src/metrics/MetricProducer.h b/cmds/statsd/src/metrics/MetricProducer.h index b7e965610020..6c39d98281ca 100644 --- a/cmds/statsd/src/metrics/MetricProducer.h +++ b/cmds/statsd/src/metrics/MetricProducer.h @@ -30,7 +30,7 @@ namespace statsd { // writing the report to dropbox. MetricProducers should respond to package changes as required in // PackageInfoListener, but if none of the metrics are slicing by package name, then the update can // be a no-op. -class MetricProducer : public virtual RefBase, public virtual PackageInfoListener { +class MetricProducer : public virtual PackageInfoListener { public: virtual ~MetricProducer(){}; |