From b7282d5c7d1eb298127d6012aef08b2ccfa0e43a Mon Sep 17 00:00:00 2001 From: JeremyStarTM Date: Thu, 11 Jul 2024 05:00:00 +0200 Subject: [PATCH] Update gradle.properties not found message --- .../sosengine/base/data/info/EngineInformation.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/src/main/java/de/staropensource/sosengine/base/data/info/EngineInformation.java b/base/src/main/java/de/staropensource/sosengine/base/data/info/EngineInformation.java index e4b435a0..444f4490 100644 --- a/base/src/main/java/de/staropensource/sosengine/base/data/info/EngineInformation.java +++ b/base/src/main/java/de/staropensource/sosengine/base/data/info/EngineInformation.java @@ -374,7 +374,7 @@ public final class EngineInformation { InputStream gradleStream = EngineInformation.class.getClassLoader().getResourceAsStream("gradle.properties"); if (gradleStream == null) { - System.out.println("Unable to load build information: The bundled gradle.properties file could not be found. Do symlinks work on the system that built this JAR?"); + System.out.println("Unable to load build information: The bundled gradle.properties file could not be found."); Engine.getInstance().shutdown(69); return; }