fix code style of try catch blocks

This commit is contained in:
Georg Ehrke 2013-07-30 13:43:15 +02:00
parent d84d8f7108
commit 640253fa31
4 changed files with 4 additions and 4 deletions

View File

@ -84,7 +84,7 @@ try{
$preview->setScalingUp($scalingUp);
$preview->show();
}catch(\Exception $e) {
} catch (\Exception $e) {
\OC_Response::setStatus(500);
\OC_Log::write('core', $e->getmessage(), \OC_Log::ERROR);
\OC\Preview::showErrorPreview();

View File

@ -35,7 +35,7 @@ class Office extends Provider {
try{
$pdf = new \imagick($absPath . '.pdf' . '[0]');
$pdf->setImageFormat('jpg');
}catch (\Exception $e) {
} catch (\Exception $e) {
unlink($absPath);
unlink($absPath . '.pdf');
\OC_Log::write('core', $e->getmessage(), \OC_Log::ERROR);

View File

@ -22,7 +22,7 @@ if (extension_loaded('imagick')) {
try{
$pdf = new \imagick($tmpPath . '[0]');
$pdf->setImageFormat('jpg');
}catch (\Exception $e) {
} catch (\Exception $e) {
\OC_Log::write('core', $e->getmessage(), \OC_Log::ERROR);
return false;
}

View File

@ -27,7 +27,7 @@ if (extension_loaded('imagick')) {
$svg->readImageBlob($content);
$svg->setImageFormat('jpg');
}catch(\Exception $e){
} catch (\Exception $e) {
\OC_Log::write('core', $e->getmessage(), \OC_Log::ERROR);
return false;
}