summaryrefslogtreecommitdiffstats
path: root/io
diff options
context:
space:
mode:
Diffstat (limited to 'io')
-rw-r--r--io/source/stm/odata.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/io/source/stm/odata.cxx b/io/source/stm/odata.cxx
index e88a6bcb82fa..ed6402e5ed8d 100644
--- a/io/source/stm/odata.cxx
+++ b/io/source/stm/odata.cxx
@@ -335,7 +335,7 @@ OUString ODataInputStream::readUTF()
char2 = (sal_uInt8)readByte();
char3 = (sal_uInt8)readByte();
- if( (((char2 & 0xC0) != 0x80) || ((char3 & 0xC0) != 0x80)) ) {
+ if( ((char2 & 0xC0) != 0x80) || ((char3 & 0xC0) != 0x80) ) {
throw WrongFormatException( );
}
pStr[nStrLen++] = (sal_Unicode(c & 0x0F) << 12) |
@@ -1155,7 +1155,7 @@ Reference< XPersistObject > OObjectInputStream::readObject()
// Read the length of the object
sal_Int32 nObjLen = readLong();
- if( ( 0 == nId && 0 != nObjLen ) )
+ if( 0 == nId && 0 != nObjLen )
{
throw WrongFormatException();
}