SplitSource: remove unneded for Td destructor headers.

GitOrigin-RevId: ddff5fc28b46db6b757fc9c638614bd73d1c4ea9
This commit is contained in:
levlam 2019-04-27 04:34:52 +03:00
parent 6ca6b78b3b
commit 6aa9f52c1c
1 changed files with 11 additions and 0 deletions

View File

@ -293,6 +293,17 @@ function split_file($file, $chunks, $undo) {
$new_content = str_replace($include_name, '', $new_content);
}
}
} else {
$new_content = preg_replace_callback(
'|#include "[a-z_A-Z/0-9.]*"|',
function ($matches) {
if (strpos($matches[0], "Manager") !== false || strpos($matches[0], "HashtagHints") !== false || strpos($matches[0], "Td.h") !== false) {
return $matches[0];
}
return '';
},
$new_content
);
}
if (!file_exists($new_files[$n]) || file_get_contents($new_files[$n]) !== $new_content) {