[Libreoffice-commits] core.git: Branch 'feature/formula-core-rework' - sc/source
Kohei Yoshida
kohei.yoshida at gmail.com
Wed May 22 15:38:28 PDT 2013
sc/source/core/data/column2.cxx | 7 -------
1 file changed, 7 deletions(-)
New commits:
commit 96af3caabee934baf5bb602064ad9aa7f7cb7ab9
Author: Kohei Yoshida <kohei.yoshida at gmail.com>
Date: Wed May 22 14:08:50 2013 -0400
Remove unnecessary debug outputs that would slow down perf tests.
Change-Id: I221c5ffd2614b547a1d8ea0fab8794e468a1df7e
diff --git a/sc/source/core/data/column2.cxx b/sc/source/core/data/column2.cxx
index fbd0c0a..eec2b96 100644
--- a/sc/source/core/data/column2.cxx
+++ b/sc/source/core/data/column2.cxx
@@ -1390,17 +1390,11 @@ void ScColumn::CellStorageModified()
return;
}
- cout << "-- begin" << endl;
- std::vector<ColEntry>::const_iterator it = maItems.begin(), itEnd = maItems.end();
- for (; it != itEnd; ++it)
- cout << "ScColumn::CellStorageModified: entry: row = " << it->nRow << "; cell = " << it->pCell << endl;
-
ScColumnTextWidthIterator aIter(*this, 0, MAXROW);
for (; aIter.hasCell(); aIter.next())
{
SCROW nRow = aIter.getPos();
ScBaseCell* pCell = GetCell(nRow);
- cout << "ScColumn::CellStorageModified: row = " << nRow << "; cell = " << pCell << endl;
if (!pCell)
{
cout << "ScColumn::CellStorageModified: Cell and text width storages are out of sync!" << endl;
@@ -1408,7 +1402,6 @@ void ScColumn::CellStorageModified()
abort();
}
}
- cout << "-- end" << endl;
#endif
}
More information about the Libreoffice-commits
mailing list