Manual PR merge to remove redundant brackets after throw in 2 files, courtesy of kachkaev
This commit is contained in:
parent
6a4be7da3c
commit
9f575aff68
|
@ -2209,7 +2209,7 @@ class PHPExcel_Calculation {
|
|||
try {
|
||||
return $this->calculateCellValue($pCell);
|
||||
} catch (PHPExcel_Exception $e) {
|
||||
throw(new PHPExcel_Calculation_Exception($e->getMessage()));
|
||||
throw new PHPExcel_Calculation_Exception($e->getMessage());
|
||||
}
|
||||
} // function calculate()
|
||||
|
||||
|
@ -2243,7 +2243,7 @@ class PHPExcel_Calculation {
|
|||
try {
|
||||
$result = self::_unwrapResult($this->_calculateFormulaValue($pCell->getValue(), $pCell->getCoordinate(), $pCell));
|
||||
} catch (PHPExcel_Exception $e) {
|
||||
throw(new PHPExcel_Calculation_Exception($e->getMessage()));
|
||||
throw new PHPExcel_Calculation_Exception($e->getMessage());
|
||||
}
|
||||
|
||||
if ((is_array($result)) && (self::$returnArrayAsType != self::RETURN_ARRAY_AS_ARRAY)) {
|
||||
|
@ -2323,7 +2323,7 @@ class PHPExcel_Calculation {
|
|||
try {
|
||||
$result = self::_unwrapResult($this->_calculateFormulaValue($formula, $cellID, $pCell));
|
||||
} catch (PHPExcel_Exception $e) {
|
||||
throw(new PHPExcel_Calculation_Exception($e->getMessage()));
|
||||
throw new PHPExcel_Calculation_Exception($e->getMessage());
|
||||
}
|
||||
|
||||
// Reset calculation cacheing to its previous state
|
||||
|
|
|
@ -295,10 +295,8 @@ class PHPExcel_Cell
|
|||
}
|
||||
//echo 'Calculation Exception: '.$ex->getMessage().PHP_EOL;
|
||||
$result = '#N/A';
|
||||
throw(
|
||||
new PHPExcel_Calculation_Exception(
|
||||
throw new PHPExcel_Calculation_Exception(
|
||||
$this->getWorksheet()->getTitle().'!'.$this->getCoordinate().' -> '.$ex->getMessage()
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue