From 98cafd957d9df789e1a242acfbdf515838671bad Mon Sep 17 00:00:00 2001 From: Juliano Alves Date: Mon, 23 Mar 2020 18:14:36 +0000 Subject: [PATCH 1/2] Bump wix-embedded-mysql --- ndbc-mysql-embedded/pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ndbc-mysql-embedded/pom.xml b/ndbc-mysql-embedded/pom.xml index 68e2ba1..8cd22bd 100644 --- a/ndbc-mysql-embedded/pom.xml +++ b/ndbc-mysql-embedded/pom.xml @@ -31,7 +31,7 @@ com.wix wix-embedded-mysql - 4.4.0 + 4.6.1 @@ -54,4 +54,4 @@ - \ No newline at end of file + From bfe29f7351d7d481098101368c0135f3d263a477 Mon Sep 17 00:00:00 2001 From: Juliano Alves Date: Fri, 3 Jul 2020 13:55:51 +0100 Subject: [PATCH 2/2] trigger build --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7e53c55..c03f068 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ For small files, this code wouldn't be a problem. Now let's assume that `file.tx ## `Future` to the rescue -`Future` is an abstraction to deal with asynchronicity without blocking threads. The primary usage for `Future`s on the JVM is to perform IO operations. Bringing this idea to the previous example, the code would be something like: +A `Future` is an abstraction to deal with asynchronicity without blocking threads. The primary usage for `Future`s on the JVM is to perform IO operations. Bringing this idea to the previous example, the code would be something like: ``` Future> lines = Files.readAllLines(Paths.get(file.toURI()));