Skip to content

Commit

Permalink
Require Java 17
Browse files Browse the repository at this point in the history
  • Loading branch information
seab authored and seab committed Apr 17, 2023
1 parent 452f4d2 commit 4d9d28d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>fun.seabird</groupId>
<artifactId>ebird-media-sorter</artifactId>
<version>2.2.5</version>
<version>2.2.7</version>
<name>ebird-media-sorter</name>

<build>
Expand Down Expand Up @@ -33,9 +33,9 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.0</version>
<version>3.11.0</version>
<configuration>
<release>8</release>
<release>17</release>
</configuration>
</plugin>

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/fun/seabird/MediaSortTask.java
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ private void parseCsvLine(CSVRecord record)
* @param csvFile The path to the CSV file to be parsed.
* @throws IOException If an I/O error occurs while reading the CSV file.
*/
public void parseCsv(Path csvFile) throws IOException {
private void parseCsv(Path csvFile) throws IOException {
logger.info("Parsing " + csvFile + "...");

try (Reader fileReader = Files.newBufferedReader(csvFile);
Expand Down

0 comments on commit 4d9d28d

Please sign in to comment.