update documentation

This commit is contained in:
Eduard Heimbuch
2020-09-22 16:53:08 +02:00
parent 2dc3fb4385
commit 6014eea193
6 changed files with 10 additions and 14 deletions

View File

@@ -77,13 +77,13 @@ public class ReleaseVersionChecker {
cache.put("latest", latestRelease.get());
return latestRelease;
}
LOG.info("No newer version found for SCM-Manager");
return Optional.empty();
} catch (IOException e) {
// This is an silent action. We don't want the user to get any kind of error for this.
// This is a silent action. We don't want the user to get any kind of error for this.
LOG.info("No newer version found for SCM-Manager");
return Optional.empty();
}
LOG.info("No newer version found for SCM-Manager");
return Optional.empty();
}
private boolean isNewerVersion(ReleaseInfo releaseInfo) {