From: Bartosz DziewoƄski Date: Thu, 22 Jun 2017 17:49:20 +0000 (+0200) Subject: Linker: Remove whiny FIXME comments X-Git-Tag: 1.31.0-rc.0~2923^2 X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_aide%28?a=commitdiff_plain;h=88b209ff2a8a65eaa3df18687279727b341138ad;p=lhc%2Fweb%2Fwiklou.git Linker: Remove whiny FIXME comments These are not actionable. Such is life, deal with it. Change-Id: I81df045f54052b98cf798d3d42a3d730407d68ae --- diff --git a/includes/Linker.php b/includes/Linker.php index b133ecdbbe..6942a39935 100644 --- a/includes/Linker.php +++ b/includes/Linker.php @@ -2094,9 +2094,6 @@ class Linker { * @return array */ public static function tooltipAndAccesskeyAttribs( $name, array $msgParams = [] ) { - # @todo FIXME: If Sanitizer::expandAttributes() treated "false" as "output - # no attribute" instead of "output '' as value for attribute", this - # would be three lines. $attribs = [ 'title' => self::titleAttrib( $name, 'withaccess', $msgParams ), 'accesskey' => self::accesskey( $name ) @@ -2118,9 +2115,6 @@ class Linker { * @return null|string */ public static function tooltip( $name, $options = null ) { - # @todo FIXME: If Sanitizer::expandAttributes() treated "false" as "output - # no attribute" instead of "output '' as value for attribute", this - # would be two lines. $tooltip = self::titleAttrib( $name, $options ); if ( $tooltip === false ) { return '';