]> source.dussan.org Git - nextcloud-server.git/commitdiff
Remove unused internal methods
authorMorris Jobke <hey@morrisjobke.de>
Thu, 26 Nov 2015 09:25:43 +0000 (10:25 +0100)
committerMorris Jobke <hey@morrisjobke.de>
Thu, 26 Nov 2015 09:25:43 +0000 (10:25 +0100)
* removes OC_Helper::mb_substr_replace and OC_Helper::mb_str_replace
* keeps public interface wrapper working as expected

lib/private/helper.php
lib/public/util.php
tests/lib/helper.php

index ee2f520fe2b58cfb4f83904b2d267d9c0f4c61fa..109b9b7ac082df788aba9167e511717511a185a1 100644 (file)
@@ -644,37 +644,6 @@ class OC_Helper {
                return $ret;
        }
 
-       /**
-        * replaces a copy of string delimited by the start and (optionally) length parameters with the string given in replacement.
-        *
-        * @param string $string
-        * @param string $replacement The replacement string.
-        * @param int $start If start is positive, the replacing will begin at the start'th offset into string. If start is negative, the replacing will begin at the start'th character from the end of string.
-        * @param int $length Length of the part to be replaced
-        * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8
-        * @return string
-        * @deprecated 8.2.0 Use substr_replace() instead.
-        */
-       public static function mb_substr_replace($string, $replacement, $start, $length = 0, $encoding = 'UTF-8') {
-               return substr_replace($string, $replacement, $start, $length);
-       }
-
-       /**
-        * Replace all occurrences of the search string with the replacement string
-        *
-        * @param string $search The value being searched for, otherwise known as the needle.
-        * @param string $replace The replacement
-        * @param string $subject The string or array being searched and replaced on, otherwise known as the haystack.
-        * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8
-        * @param int $count If passed, this will be set to the number of replacements performed.
-        * @return string
-        * @deprecated 8.2.0 Use str_replace() instead.
-        *
-        */
-       public static function mb_str_replace($search, $replace, $subject, $encoding = 'UTF-8', &$count = null) {
-               return str_replace($search, $replace, $subject, $count);
-       }
-
        /**
         * performs a search in a nested array
         * @param array $haystack the array to be searched
index 07bc47c18b4cd22ac7f96e037b2d01350054c2a5..50fe91850060146a6aa6f36d001771d002f44a4f 100644 (file)
@@ -544,7 +544,7 @@ class Util {
         * @deprecated 8.2.0 Use substr_replace() instead.
         */
        public static function mb_substr_replace($string, $replacement, $start, $length = null, $encoding = 'UTF-8') {
-               return(\OC_Helper::mb_substr_replace($string, $replacement, $start, $length, $encoding));
+               return substr_replace($string, $replacement, $start, $length);
        }
 
        /**
@@ -560,7 +560,7 @@ class Util {
         * @deprecated 8.2.0 Use str_replace() instead.
         */
        public static function mb_str_replace($search, $replace, $subject, $encoding = 'UTF-8', &$count = null) {
-               return(\OC_Helper::mb_str_replace($search, $replace, $subject, $encoding, $count));
+               return str_replace($search, $replace, $subject, $count);
        }
 
        /**
index ca3e0e46d82051a50657a6224511480d8f0a00aa..85655c69e63cdc7e8702379c1ffc16b7593c9ad0 100644 (file)
@@ -164,18 +164,6 @@ class Test_Helper extends \Test\TestCase {
                $this->assertEquals($result, $expected);
        }
 
-       function testMb_substr_replace() {
-               $result = OC_Helper::mb_substr_replace("This  is a teststring", "string", 5);
-               $expected = "This string is a teststring";
-               $this->assertEquals($result, $expected);
-       }
-
-       function testMb_str_replace() {
-               $result = OC_Helper::mb_str_replace("teststring", "string", "This is a teststring");
-               $expected = "This is a string";
-               $this->assertEquals($result, $expected);
-       }
-
        function testRecursiveArraySearch() {
                $haystack = array(
                        "Foo" => "own",