Removed deprecated unsused function OC_Helper::getStringMimeType

This commit is contained in:
Roeland Jago Douma 2015-12-18 13:43:44 +01:00
parent 4f20e3bac0
commit a54be132fc
2 changed files with 0 additions and 21 deletions

View File

@ -346,17 +346,6 @@ class OC_Helper {
return \OC::$server->getMimeTypeDetector()->detectPath($path);
}
/**
* get the mimetype form a data string
*
* @param string $data
* @return string
* @deprecated 8.2.0 Use \OC::$server->getMimeTypeDetector()->detectString($data)
*/
static function getStringMimeType($data) {
return \OC::$server->getMimeTypeDetector()->detectString($data);
}
/**
* detect if a given program is found in the search PATH
*

View File

@ -71,16 +71,6 @@ class Test_Helper extends \Test\TestCase {
];
}
function testGetStringMimeType() {
if (\OC_Util::runningOnWindows()) {
$this->markTestSkipped('[Windows] Strings have mimetype application/octet-stream on Windows');
}
$result = OC_Helper::getStringMimeType("/data/data.tar.gz");
$expected = 'text/plain; charset=us-ascii';
$this->assertEquals($result, $expected);
}
function testIsSubDirectory() {
$result = OC_Helper::isSubDirectory("./data/", "/anotherDirectory/");
$this->assertFalse($result);