summaryrefslogtreecommitdiff
path: root/package/source/zipapi/CRC32.cxx
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2008-06-20 06:19:51 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2008-06-20 06:19:51 +0000
commit1fa173d06c51f750ee05259a7b12e576a7eb0abf (patch)
tree9eed9e5aa2850f647f91fd57a262f1b8e4e21ed0 /package/source/zipapi/CRC32.cxx
parentb2b68561d1f94a9d4980e36eee02f9945649b7fc (diff)
INTEGRATION: CWS fwk88 (1.13.8); FILE MERGED
2008/05/27 15:57:23 mav 1.13.8.1: #i86348# integrate the patch
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,