From c019f62a5b66963bad77cb5b7318813532c72ff8 Mon Sep 17 00:00:00 2001 From: Jean Charles Papin Date: Mon, 14 Feb 2011 21:00:02 +0000 Subject: Remove useless comments --- io/source/stm/odata.cxx | 3 --- 1 file changed, 3 deletions(-) (limited to 'io') diff --git a/io/source/stm/odata.cxx b/io/source/stm/odata.cxx index 4237977b6b15..338df98b7e7b 100644 --- a/io/source/stm/odata.cxx +++ b/io/source/stm/odata.cxx @@ -808,16 +808,13 @@ void ODataOutputStream::writeUTF(const OUString& Value) writeByte(sal_Int8(0xE0 | ((c >> 12) & 0x0F))); writeByte(sal_Int8(0x80 | ((c >> 6) & 0x3F))); writeByte(sal_Int8(0x80 | ((c >> 0) & 0x3F))); - //written += 2; } else { writeByte(sal_Int8(0xC0 | ((c >> 6) & 0x1F))); writeByte(sal_Int8(0x80 | ((c >> 0) & 0x3F))); - //written += 1; } } - //written += strlen + 2; } // XActiveDataSource -- cgit