Skip to content

Commit c78ac5b

Browse files
committed
Minor version updates
1 parent 90c862c commit c78ac5b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

bookcontents/chapter-01/chapter-01.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ You will see something similar in any other application independently of the spe
1010

1111
The base requirements to run the samples of this book are:
1212

13-
- [Java version 15](https://jdk.java.net/15/) or higher.
14-
- Maven 3.6.X or higher to build the samples.
13+
- [Java version 17](https://jdk.java.net/17/) or higher.
14+
- Maven 3.9.X or higher to build the samples.
1515
Building the samples with maven will create a jar file, under the target folder, and the required folders with the dependencies and the resources.
1616
You can execute them from the command line just by using `java -jar <name_of_the_sample.jar>`.
1717
- Using an IDE is optional.

bookcontents/chapter-02/chapter-02.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ So let's start by coding the constructor, which starts like this:
2626
public class Instance {
2727
...
2828
public Instance(boolean validate) {
29-
LOGGER.debug("Creating Vulkan instance");
29+
Logger.debug("Creating Vulkan instance");
3030
try (MemoryStack stack = MemoryStack.stackPush()) {
3131
...
3232
}

0 commit comments

Comments
 (0)