Skip to content

Commit

Permalink
Removed superfluous break
Browse files Browse the repository at this point in the history
In every case of the if clause it will return, so break is not needed.
  • Loading branch information
ravage84 committed Jul 2, 2013
1 parent c671d8d commit ff1f803
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/Cake/Model/Datasource/Database/Sqlserver.php
Expand Up @@ -537,7 +537,6 @@ public function renderStatement($type, $data) {
} else {
return "SELECT {$limit} {$fields} FROM {$table} {$alias} {$joins} {$conditions} {$group} {$order}";
}
break;
case "schema":
extract($data);

Expand Down

0 comments on commit ff1f803

Please sign in to comment.