79828536

Date: 2025-11-24 10:57:59
Score: 1
Natty:
Report link

if you use maven check that in your pom.xml the java version is also set to to 25, or something like this:

<properties>
    <java.version>25</java.version>
</properties>

or if you use gradle in your build.gradle:

java {
    toolchain {
        languageVersion = JavaLanguageVersion.of(25)
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Leon R.