Skip to content

Commit

Permalink
GreenMail server info: Replace java.vendor.version with java.runtime.…
Browse files Browse the repository at this point in the history
…version (backport #425, fixes #439)
  • Loading branch information
marcelmay committed Feb 20, 2022
1 parent 32bafcd commit c02fd71
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -69,7 +69,7 @@ public GreenMail(ServerSetup[] config) {
log.debug("{} {} {}",
System.getProperty("java.vm.name", "java.vm.name"),
System.getProperty("java.vm.vendor", "java.vm.vendor"),
System.getProperty("java.vendor.version", "java.vendor.version")
System.getProperty("java.runtime.version", "java.runtime.version")
);
log.debug("file.encoding : {}", System.getProperty("file.encoding", "file.encoding"));
}
Expand Down

0 comments on commit c02fd71

Please sign in to comment.