summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Clayton <alex.clayton@isode.com>2016-01-26 16:33:29 (GMT)
committerAlex Clayton <alex.clayton@isode.com>2016-01-27 12:29:01 (GMT)
commit91e97e936fe671678758702bbede6a47b5487f13 (patch)
treef92b1939fb1704d602f30cbf3791bb98d1a56018 /src/com/isode/stroke/filetransfer/IncrementalBytestreamHashCalculator.java
parent97a085f7e2c9b7820000eaace97dc0ab6392cb0d (diff)
downloadstroke-91e97e936fe671678758702bbede6a47b5487f13.zip
stroke-91e97e936fe671678758702bbede6a47b5487f13.tar.bz2
Some fixes for File Transfer Patch
Some fixes that were required for the File Transfer Patch (see patch notes on Gerrit). Test-information: By code inspection. Ran against MLC (after modification so it works for stroke interface changes introduces in a previous patch) it still runs correctly. Ran unit tests they still all pass. Change-Id: Ib49d9f9160f5e6b6b578f16695f8e8bc0f96a412
Diffstat (limited to 'src/com/isode/stroke/filetransfer/IncrementalBytestreamHashCalculator.java')
-rw-r--r--src/com/isode/stroke/filetransfer/IncrementalBytestreamHashCalculator.java9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/com/isode/stroke/filetransfer/IncrementalBytestreamHashCalculator.java b/src/com/isode/stroke/filetransfer/IncrementalBytestreamHashCalculator.java
index e79a7a5..0b8902e 100644
--- a/src/com/isode/stroke/filetransfer/IncrementalBytestreamHashCalculator.java
+++ b/src/com/isode/stroke/filetransfer/IncrementalBytestreamHashCalculator.java
@@ -42,15 +42,6 @@ public class IncrementalBytestreamHashCalculator {
}
}
- /*void feedData(const SafeByteArray& data) {
- if (md5Hasher) {
- md5Hasher.update(createByteArray(data.data(), data.size()));
- }
- if (sha1Hasher) {
- sha1Hasher.update(createByteArray(data.data(), data.size()));
- }
- }*/
-
public ByteArray getSHA1Hash() {
assert(sha1Hasher != null);
if (sha1Hash == null) {