Removed superfluous break

In every case of the if clause it will return, so break is not needed.
This commit is contained in:
Marc Würth 2013-07-02 21:00:24 +02:00
parent c671d8da62
commit ff1f80349a

View file

@ -537,7 +537,6 @@ class Sqlserver extends DboSource {
} else {
return "SELECT {$limit} {$fields} FROM {$table} {$alias} {$joins} {$conditions} {$group} {$order}";
}
break;
case "schema":
extract($data);