Removed redundant code

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@65397 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Sam Minnee 2008-11-06 21:01:12 +00:00
parent 5a0db59850
commit bfc7c7717b

View File

@ -96,7 +96,7 @@ class ManifestBuilder {
$manifestInfo = self::get_manifest_info(BASE_PATH, array("tests"));
$manifest = self::generate_php_file($manifestInfo);
if(false || $fh = fopen(MANIFEST_FILE, "w")) {
if($fh = fopen(MANIFEST_FILE, "w")) {
fwrite($fh, $manifest);
fclose($fh);
} else {