MINOR Removed double returns in installer (redundant code)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/branches/2.4@104709 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
sharvey 2010-05-12 12:39:47 +00:00 committed by Sam Minnee
parent 61cc59d267
commit fcbec87d30

View File

@ -698,7 +698,6 @@ class InstallRequirements {
$class = str_replace('.php', '', basename($helperPath));
}
return (class_exists($class)) ? new $class() : new MySQLDatabaseConfigurationHelper();
return new $class();
}
function requireDatabaseFunctions($databaseConfig, $testDetails) {