diff options
author | Bartosz Dziewoński <dziewonski@fastmail.fm> | 2025-03-08 19:19:39 +0100 |
---|---|---|
committer | Bartosz Dziewoński <dziewonski@fastmail.fm> | 2025-03-10 16:02:49 +0000 |
commit | b0850279b6a948cad690baa37c0e7cd075ac9369 (patch) | |
tree | 5daa00ce00e3757217c32e5032519cf262cdd58a /includes/ServiceWiring.php | |
parent | 19fa0162243dda7840380a70324f60f21c1d5a3d (diff) | |
download | mediawikicore-b0850279b6a948cad690baa37c0e7cd075ac9369.tar.gz mediawikicore-b0850279b6a948cad690baa37c0e7cd075ac9369.zip |
GenderCache: Clean up optional/unused constructor params
Depends-On: I81df79e5c036392d6c17589935f4420a5e4a387b
Depends-On: I208c75db3b1049fa7cdd64a86ea8f08f02a67063
Change-Id: I209ad728f3033c19d6109fcc4a7fa425754f2bbb
Diffstat (limited to 'includes/ServiceWiring.php')
-rw-r--r-- | includes/ServiceWiring.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/ServiceWiring.php b/includes/ServiceWiring.php index e8de4323f6f8..540b0ac5bca9 100644 --- a/includes/ServiceWiring.php +++ b/includes/ServiceWiring.php @@ -908,7 +908,7 @@ return [ } else { $userOptionsLookup = $services->getUserOptionsLookup(); } - return new GenderCache( $nsInfo, null, $userOptionsLookup ); + return new GenderCache( $nsInfo, $userOptionsLookup ); }, 'GlobalIdGenerator' => static function ( MediaWikiServices $services ): GlobalIdGenerator { |