Same issue as this one: #7
The fix is quite simple:
// RegChecker.cs
- if (Version.TryParse(versionString, out Version version) && version.Major >= 1 && version.Minor >= 8)
+ if (Version.TryParse(versionString, out Version version) && version.Major >= 18)
This was tested with JDK 22.0.2 and it works fine.
Same issue as this one: #7
The fix is quite simple:
This was tested with JDK 22.0.2 and it works fine.