sc/source/core/data/column.cxx |    4 ----
 1 file changed, 4 deletions(-)

New commits:
commit f43f6c4292bd20b18d29abbd7763e098b100e95c
Author:     Andrea Gelmini <andrea.gelm...@gelma.net>
AuthorDate: Sun Dec 31 10:33:12 2023 +0100
Commit:     Kevin Suo <suokunl...@126.com>
CommitDate: Mon Mar 4 14:33:39 2024 +0100

    Remove break after return
    
    Change-Id: Id8e933ba8b7b0836613b3b722f3eda081b77f1f2
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161463
    Tested-by: Jenkins
    Reviewed-by: Kevin Suo <suokunl...@126.com>

diff --git a/sc/source/core/data/column.cxx b/sc/source/core/data/column.cxx
index 34524e444dc3..dea1adde51f3 100644
--- a/sc/source/core/data/column.cxx
+++ b/sc/source/core/data/column.cxx
@@ -605,19 +605,15 @@ ScRefCellValue ScColumn::GetCellValue( const 
sc::CellStoreType::const_iterator&
         case sc::element_type_numeric:
             // Numeric cell
             return ScRefCellValue(sc::numeric_block::at(*itPos->data, 
nOffset));
-        break;
         case sc::element_type_string:
             // String cell
             return ScRefCellValue(&sc::string_block::at(*itPos->data, 
nOffset));
-        break;
         case sc::element_type_edittext:
             // Edit cell
             return ScRefCellValue(sc::edittext_block::at(*itPos->data, 
nOffset));
-        break;
         case sc::element_type_formula:
             // Formula cell
             return ScRefCellValue(sc::formula_block::at(*itPos->data, 
nOffset));
-        break;
         default:
             return ScRefCellValue(); // empty cell
     }

Reply via email to