diff options
author | L P <luke.petrolekas@gmail.com> | 2011-02-14 21:05:14 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-02-14 21:05:14 +0000 |
commit | f5e77c96802886b24b0da8686cad393649d43da0 (patch) | |
tree | 5714a8ad3c394a477ebea5156551c68744192524 /io | |
parent | b35ee4bc1537b3916e152810537f840931305495 (diff) |
Remove useless comments
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 dd07f21b3..660cc7c76 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 |