Skip to content

Commit

Permalink
Spotless.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ghislain Fourny committed Oct 28, 2024
1 parent e4e7acf commit 7b1ed27
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/main/java/org/rumbledb/cli/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,14 @@ public static void main(String[] args) throws IOException {
&& !javaVersion.startsWith("17")
&& !javaVersion.startsWith("21")
) {
System.err.println("[Error] RumbleDB requires at least Java 11 17 or 21 (17 being the default Spark 4 version).");
System.err.println(
"[Error] RumbleDB requires at least Java 11 17 or 21 (17 being the default Spark 4 version)."
);
System.err.println("Your Java version: " + System.getProperty("java.version"));
System.err.println("You can download Java from https://adoptium.net/");
System.err.println(
"If you do have Java 11 17 or 21, but the wrong version appears above, then it means you need to set your JAVA_HOME environment variable properly to point to the correct JAVA_HOME."
);
"If you do have Java 11 17 or 21, but the wrong version appears above, then it means you need to set your JAVA_HOME environment variable properly to point to the correct JAVA_HOME."
);
System.exit(43);
}
RumbleRuntimeConfiguration sparksoniqConf = null;
Expand Down

0 comments on commit 7b1ed27

Please sign in to comment.