Skip to content

Commit

Permalink
set default Java version to 17
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankHossfeld committed Jul 22, 2024
1 parent 5e0e241 commit 28e7f63
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions malio/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>8</source>
<target>8</target>
<source>11</source>
<target>11</target>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
<meminitial>128m</meminitial>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ public void invlidate(String message,
}

public boolean isValid() {
return this.messages.size() == 0;
return this.messages.isEmpty();
}
}

0 comments on commit 28e7f63

Please sign in to comment.