1
0
Fork 0

Revert "Attempt fixing virtualbox issues, refs #9945"

This reverts commit 7a7e0cc031.
pull/9959/head
Jordi Boggiano 2021-06-05 20:42:31 +02:00
parent e087a4ab5e
commit c1f0eee154
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC
2 changed files with 0 additions and 6 deletions

View File

@ -294,8 +294,6 @@ class Filesystem
if (Platform::isWindows()) {
usleep(350000);
$deleted = @rmdir($path);
} elseif (Platform::workaroundFilesystemIssues()) {
$deleted = @rmdir($path);
}
if (!$deleted) {

View File

@ -174,11 +174,7 @@ class Platform
{
if (self::isVirtualBoxGuest()) {
usleep(200000);
return true;
}
return false;
}
/**