diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-02-15 09:10:52 +0100 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-02-15 09:10:52 +0100 |
commit | 5c2740a1aff5e2352a9d619ab925be7608fab27b (patch) | |
tree | e79ae74639bdb2dc9f0ae1e2dbbc4f41776f30b3 /io | |
parent | 7ce5df3e7f6c05ae118b989567f46b375a893a8a (diff) |
Revert "Revert "Remove useless comments""
Pouring ashes on my head and putting back this one
This reverts commit d5aa25b9dfca4de9dc2a702aeb0fb1e146fb7f2a.
Diffstat (limited to 'io')
-rw-r--r-- | io/source/stm/odata.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
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 |