chore: add support to Java 8 and above

This commit is contained in:
Tulis
2025-08-18 15:44:09 +02:00
parent b60d0d8a49
commit 1359d814dd
3 changed files with 5 additions and 5 deletions

2
.idea/misc.xml generated
View File

@ -8,7 +8,7 @@
</list>
</option>
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_23" default="true" project-jdk-name="21" project-jdk-type="JavaSDK">
<component name="ProjectRootManager" version="2" languageLevel="JDK_21" default="true" project-jdk-name="21" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/out" />
</component>
</project>

View File

@ -9,8 +9,8 @@
<version>1.1</version>
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

View File

@ -150,11 +150,11 @@ public class AutomaticInitializer {
return this;
}
public String getPackageName() {
String getPackageName() {
return packageName;
}
public LinkedHashMap<Class<?>, List<Object>> getClasses() {
LinkedHashMap<Class<?>, List<Object>> getClasses() {
return classes;
}