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 d25d5ba..6b78ef1 100644
--- a/sc/source/core/data/column2.cxx
+++ b/sc/source/core/data/column2.cxx
@@ -1387,17 +1387,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;
@@ -1405,7 +1399,6 @@ void ScColumn::CellStorageModified()
abort();
}
}
cout << "-- end" << endl;
#endif
}