summaryrefslogtreecommitdiff
path: root/package/source/zipapi/CRC32.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'package/source/zipapi/CRC32.cxx')
-rw-r--r--package/source/zipapi/CRC32.cxx11
1 files changed, 1 insertions, 10 deletions
diff --git a/package/source/zipapi/CRC32.cxx b/package/source/zipapi/CRC32.cxx
index 6626e890ed88..080f90b9db50 100644
--- a/package/source/zipapi/CRC32.cxx
+++ b/package/source/zipapi/CRC32.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: CRC32.cxx,v $
- * $Revision: 1.13 $
+ * $Revision: 1.14 $
*
* This file is part of OpenOffice.org.
*
@@ -65,15 +65,6 @@ sal_Int32 SAL_CALL CRC32::getValue()
{
return nCRC & 0xFFFFFFFFL;
}
-/** Update CRC32 with specified byte
- */
-void SAL_CALL CRC32::updateByte (sal_Int8 nByte)
- throw(RuntimeException)
-{
- sal_uInt8 pBuf[1];
- pBuf[0] = (sal_uInt8)nByte;
- nCRC = crc32(nCRC, pBuf, 1);
-}
/** Update CRC32 with specified sequence of bytes
*/
void SAL_CALL CRC32::updateSegment(const Sequence< sal_Int8 > &b,