summaryrefslogtreecommitdiff
path: root/sot
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-04-13 09:13:41 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-04-13 09:13:41 +0100
commit1bb8aa97264444ba201d0294a53c0d3ec024db3d (patch)
tree0b015ccaa6e4f6e9e3d4982522491b4d209ae730 /sot
parent7ca04cee7a68bcb9a2fdbbf7572cf60b739b1732 (diff)
WaE: set but unused in dbgutil mode
Diffstat (limited to 'sot')
-rw-r--r--sot/source/sdstor/ucbstorage.cxx8
1 files changed, 0 insertions, 8 deletions
diff --git a/sot/source/sdstor/ucbstorage.cxx b/sot/source/sdstor/ucbstorage.cxx
index 3fcf8b07cf9d..8199a5e3423d 100644
--- a/sot/source/sdstor/ucbstorage.cxx
+++ b/sot/source/sdstor/ucbstorage.cxx
@@ -201,16 +201,8 @@ void SAL_CALL FileStreamWrapper_Impl::skipBytes(sal_Int32 nBytesToSkip) throw( N
::osl::MutexGuard aGuard( m_aMutex );
checkError();
-#ifdef DBG_UTIL
- sal_uInt32 nCurrentPos = m_pSvStream->Tell();
-#endif
-
m_pSvStream->SeekRel(nBytesToSkip);
checkError();
-
-#ifdef DBG_UTIL
- nCurrentPos = m_pSvStream->Tell();
-#endif
}
//------------------------------------------------------------------------------