IP: Remove unused deprecated ::isValidBlock() method
authorDerick Alangi <alangiderick@gmail.com>
Wed, 15 May 2019 14:15:03 +0000 (15:15 +0100)
committerDerick Alangi <alangiderick@gmail.com>
Fri, 17 May 2019 19:43:32 +0000 (20:43 +0100)
This method was deprecated in 1.30 and no longer used in our code
bases.

Usage
=====

https://codesearch.wmflabs.org/search/?q=%5CbisValidBlock%5Cb&i=nope&files=&repos=

Change-Id: I26e11c0d88fe7c82c052c1cf8e0bbc33bd99de70

RELEASE-NOTES-1.34
includes/libs/IP.php

index 7e10de1..917609b 100644 (file)
@@ -168,6 +168,7 @@ because of Phabricator reports.
 * FileRepoStatus, deprecated in 1.25, has been removed.
 * The LegacyHookPreAuthenticationProvider class, deprecated since its creation
   in 1.27, has been removed.
+* IP::isValidBlock(), deprecated in 1.30, has been removed.
 * …
 
 === Deprecations in 1.34 ===
index 37e0076..e9f0258 100644 (file)
@@ -115,20 +115,6 @@ class IP {
                        || preg_match( '/^' . RE_IPV6_ADD . '$/', $ip ) );
        }
 
-       /**
-        * Validate an IP range (valid address with a valid CIDR prefix).
-        * SIIT IPv4-translated addresses are rejected.
-        * @note canonicalize() tries to convert translated addresses to IPv4.
-        *
-        * @deprecated since 1.30. Use the equivalent IP::isValidRange().
-        * @param string $ipRange
-        * @return bool True if it is valid
-        */
-       public static function isValidBlock( $ipRange ) {
-               wfDeprecated( __METHOD__, '1.30' );
-               return self::isValidRange( $ipRange );
-       }
-
        /**
         * Validate an IP range (valid address with a valid CIDR prefix).
         * SIIT IPv4-translated addresses are rejected.