fix code style of try catch blocks

remotes/origin/stable6
Georg Ehrke 13 years ago
parent d84d8f7108
commit 640253fa31
  1. 2
      core/ajax/publicpreview.php
  2. 2
      lib/preview/libreoffice-cl.php
  3. 2
      lib/preview/pdf.php
  4. 2
      lib/preview/svg.php

@ -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();

@ -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);

@ -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;
}

@ -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;
}

Loading…
Cancel
Save