1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-11 16:34:04 +02:00

space in debug message for lastestversion

This commit is contained in:
soloturn
2023-06-11 22:29:07 +02:00
parent 360ad950cf
commit 8ba17b4791

View File

@@ -188,7 +188,7 @@ public class UpdateUtils {
for (int i = 0; i < oldVersions.length; i++) {
if (newVersions[i] > oldVersions[i]) {
logger.debug("oldVersion " + getThisJarVersion() + " < latestVersion" + latestVersion);
logger.debug("oldVersion " + getThisJarVersion() + " < latestVersion " + latestVersion);
return true;
} else if (newVersions[i] < oldVersions[i]) {
logger.debug("oldVersion " + getThisJarVersion() + " > latestVersion " + latestVersion);