summaryrefslogtreecommitdiffstats
path: root/xmlhelp/source/cxxhelp/util/Decompressor.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmlhelp/source/cxxhelp/util/Decompressor.cxx')
-rw-r--r--xmlhelp/source/cxxhelp/util/Decompressor.cxx13
1 files changed, 1 insertions, 12 deletions
diff --git a/xmlhelp/source/cxxhelp/util/Decompressor.cxx b/xmlhelp/source/cxxhelp/util/Decompressor.cxx
index 12981610e838..a52fb75bcf15 100644
--- a/xmlhelp/source/cxxhelp/util/Decompressor.cxx
+++ b/xmlhelp/source/cxxhelp/util/Decompressor.cxx
@@ -26,22 +26,11 @@ using namespace xmlsearch::util;
const sal_Int32 Decompressor::BitsInByte = 8;
const sal_Int32 Decompressor::NBits = 32;
-inline sal_Int32 getInteger_( const sal_Int8* v )
-{
- return (((((( (v[0]&0xFF) ) << 8 )
- | (v[1]&0xFF) ) << 8 )
- | (v[2]&0xFF) ) << 8 )
- | (v[3]&0xFF);
-}
-
sal_Int32 StreamDecompressor::getNextByte()
{
sal_Int8 a[4];
a[0] = a[1] = a[2] = 0;
- if( in_->readBytes( &a[3],1 ) != -1 )
- return getInteger_( a );
- else
- return -1;
+ return -1;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */