From 88b209ff2a8a65eaa3df18687279727b341138ad Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bartosz=20Dziewo=C5=84ski?= Date: Thu, 22 Jun 2017 19:49:20 +0200 Subject: [PATCH] Linker: Remove whiny FIXME comments These are not actionable. Such is life, deal with it. Change-Id: I81df045f54052b98cf798d3d42a3d730407d68ae --- includes/Linker.php | 6 ------ 1 file changed, 6 deletions(-) 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 ''; -- 2.20.1