From fefc89448dee2fb4f539a2ab213302193a194f11 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Mon, 12 May 2014 14:36:15 -0700 Subject: [PATCH] MWException: Remove deprecated methods No callers in core or extensions. Change-Id: I3e2dc615bcd23838cf096625a767a7cf50fea140 --- includes/exception/MWException.php | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/includes/exception/MWException.php b/includes/exception/MWException.php index 782a44bdf8..58b07f5af8 100644 --- a/includes/exception/MWException.php +++ b/includes/exception/MWException.php @@ -177,31 +177,6 @@ class MWException extends Exception { return $this->msg( 'internalerror', 'Internal error' ); } - /** - * Get a the ID for this error. - * - * @since 1.20 - * @deprecated since 1.22 Use MWExceptionHandler::getLogId instead. - * @return string - */ - public function getLogId() { - wfDeprecated( __METHOD__, '1.22' ); - return MWExceptionHandler::getLogId( $this ); - } - - /** - * Return the requested URL and point to file and line number from which the - * exception occurred - * - * @since 1.8 - * @deprecated since 1.22 Use MWExceptionHandler::getLogMessage instead. - * @return string - */ - public function getLogMessage() { - wfDeprecated( __METHOD__, '1.22' ); - return MWExceptionHandler::getLogMessage( $this ); - } - /** * Output the exception report using HTML. */ -- 2.20.1