summaryrefslogtreecommitdiff
path: root/io
diff options
context:
space:
mode:
authorL P <luke.petrolekas@gmail.com>2011-02-14 21:05:14 +0000
committerCaolán McNamara <caolanm@redhat.com>2011-02-14 21:05:14 +0000
commitb1c6e5c90c8c3b385bb73f4d46b23eea56982c6c (patch)
tree009d042dd8b3235e36815c0c3d3314bb86184079 /io
parent7200a5b9859092a209b72d6dd41795bab97fe24d (diff)
Remove useless comments
Diffstat (limited to 'io')
-rw-r--r--io/source/stm/odata.cxx3
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