From aebfd18fefd2880b4558144bad2cf35a1ea14376 Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Tue, 28 Jun 2022 14:15:33 +0200 Subject: 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 --- test/test_bytestream01.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/test_bytestream01.cpp') 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 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(); -- cgit v1.2.3