Kaydet (Commit) 9b9612f5 authored tarafından Lionel Elie Mamane's avatar Lionel Elie Mamane

janitorial: clean up comments

Change-Id: Iaa146aad75acdceaeb6701b069f0a538904af298
üst 4f214b2b
...@@ -47,9 +47,6 @@ namespace connectivity ...@@ -47,9 +47,6 @@ namespace connectivity
{ {
namespace file namespace file
{ {
/*
** java_sql_ResultSet
*/
typedef ::cppu::WeakComponentImplHelper12< ::com::sun::star::sdbc::XResultSet, typedef ::cppu::WeakComponentImplHelper12< ::com::sun::star::sdbc::XResultSet,
::com::sun::star::sdbc::XRow, ::com::sun::star::sdbc::XRow,
::com::sun::star::sdbc::XResultSetMetaDataSupplier, ::com::sun::star::sdbc::XResultSetMetaDataSupplier,
...@@ -89,8 +86,6 @@ namespace connectivity ...@@ -89,8 +86,6 @@ namespace connectivity
TIntVector::iterator m_aEvaluateIter; TIntVector::iterator m_aEvaluateIter;
// TInt2IntMap m_aBookmarks; // map from bookmarks to logical position
// ::std::vector<TInt2IntMap::iterator> m_aBookmarksPositions;// vector of iterators to bookmark map, the order is the logical position
OSkipDeletedSet m_aSkipDeletedSet; OSkipDeletedSet m_aSkipDeletedSet;
::rtl::Reference<OKeySet> m_pFileSet; ::rtl::Reference<OKeySet> m_pFileSet;
...@@ -319,7 +314,7 @@ namespace connectivity ...@@ -319,7 +314,7 @@ namespace connectivity
sal_Int32 map = column; sal_Int32 map = column;
OSL_ENSURE(column > 0, "file::OResultSet::mapColumn: invalid column index!"); OSL_ENSURE(column > 0, "file::OResultSet::mapColumn: invalid column index!");
// the first column (index 0) is for convenience only. The first real select column is no 1. // the first column (index 0) is for convenience only. The first real select column is number 1.
if ((column > 0) && (column < (sal_Int32)m_aColMapping.size())) if ((column > 0) && (column < (sal_Int32)m_aColMapping.size()))
map = m_aColMapping[column]; map = m_aColMapping[column];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment