diff options
author | Sven Gothel <[email protected]> | 2022-06-28 14:15:33 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2022-06-28 14:15:33 +0200 |
commit | aebfd18fefd2880b4558144bad2cf35a1ea14376 (patch) | |
tree | 5ab16268dd751b5ecb1bf21d30792bcc1dcd5dd5 /test/test_bytestream01.cpp | |
parent | f279472ce84dafb74c45ec819dc1bcd4524cda43 (diff) |
Cleanup nio package, class names and code (of recently added code)
- org.jau.nio.NioUtils -> org.jau.nio.NativeIO
- Avoid clash with org.jau.lang.NioUtil
- Hint package abbreviation 'nio' -> 'Native IO'
- org.jau.sys.JauUtils -> org.jau.io.PrintUtil and spread a few functions to
-> org.jau.nio.NativeIO
-> org.jau.util.BasicTypes
Diffstat (limited to 'test/test_bytestream01.cpp')
-rw-r--r-- | test/test_bytestream01.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_bytestream01.cpp b/test/test_bytestream01.cpp index f046a15..e62d2fd 100644 --- a/test/test_bytestream01.cpp +++ b/test/test_bytestream01.cpp @@ -149,7 +149,7 @@ class TestByteStream01 { } }; jau::io::secure_vector<uint8_t> io_buffer; - io_buffer.reserve(4096); + io_buffer.reserve(4096); // TODO: Perf test w/ 2*16384 const uint64_t in_bytes_total = jau::io::read_stream(input, io_buffer, consume_data); input.close(); |