Resolve "Refactor/Cleanup: Binary transfer"
Closes #28 (closed)
Changes
-
UploadCompletionnow internally usesSortedMap<...> chunks = new TreeMap(...)instead ofMap<...> chunks. It relies on the chunks being sorted, whichMapdoes not guarantee. (It still usesTreeMapso no behavior changed, but now the contract is more explicit.) - Moved
ByteArrayProcessedInputStreamfrom library.core to examples.test_server.utils, which is its only place of usage
Edited by Niklas Mertsch