diff options
author | Derick Alangi <alangiderick@gmail.com> | 2019-05-23 22:12:26 +0100 |
---|---|---|
committer | Krinkle <krinklemail@gmail.com> | 2019-06-13 22:15:00 +0000 |
commit | a757c839b14ad4e41f4bccf88a2c14291b5ecf46 (patch) | |
tree | 07ab4f834ec5ab0c299982dd0cc101ef440c5c3b /includes/libs/stats | |
parent | df7f71017510eaeaf4d1c42df9de30995fdd072d (diff) | |
download | mediawikicore-a757c839b14ad4e41f4bccf88a2c14291b5ecf46.tar.gz mediawikicore-a757c839b14ad4e41f4bccf88a2c14291b5ecf46.zip |
libs: Remove unused deprecated BufferingStatsdDataFactory::getBuffer()
Usage
=====
https://codesearch.wmflabs.org/search/?q=%5CbgetBuffer%5Cb&i=nope&files=&repos=
Bug: T220656
Change-Id: I3d9637e1802e0d34698940f400c628f29f0aab3b
Diffstat (limited to 'includes/libs/stats')
-rw-r--r-- | includes/libs/stats/BufferingStatsdDataFactory.php | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/includes/libs/stats/BufferingStatsdDataFactory.php b/includes/libs/stats/BufferingStatsdDataFactory.php index 5ef01350d820..679b1c3337f8 100644 --- a/includes/libs/stats/BufferingStatsdDataFactory.php +++ b/includes/libs/stats/BufferingStatsdDataFactory.php @@ -91,15 +91,6 @@ class BufferingStatsdDataFactory extends StatsdDataFactory implements IBuffering return $entity; } - /** - * @deprecated since 1.30 Use getData() instead - * @return StatsdData[] - */ - public function getBuffer() { - wfDeprecated( __METHOD__, '1.30' ); - return $this->buffer; - } - public function hasData() { return !empty( $this->buffer ); } |