Skip to content

Commit 1cd4956

Browse files
committed
- upgrade libraries
- fix warning
1 parent d8dd8a0 commit 1cd4956

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,14 +92,14 @@
9292
<maven.compiler.source>${jdk.language.version}</maven.compiler.source>
9393
<maven.compiler.target>${jdk.language.version}</maven.compiler.target>
9494

95-
<annotations.version>24.0.1</annotations.version>
95+
<annotations.version>24.1.0</annotations.version>
9696
<assertj-core.version>3.25.3</assertj-core.version>
9797
<commons-configuration2.version>2.10.1</commons-configuration2.version>
9898
<commons-io.version>2.11.0</commons-io.version>
9999
<commons-lang3.version>3.14.0</commons-lang3.version>
100100
<controlsfx.version>11.2.1</controlsfx.version>
101101
<flatlaf.version>3.4</flatlaf.version>
102-
<guava.version>33.1.0-jre</guava.version>
102+
<guava.version>33.2.0-jre</guava.version>
103103
<install4j-maven-plugin.version>1.1.2</install4j-maven-plugin.version>
104104
<jackson.version>2.17.0</jackson.version>
105105
<jaffree.version>2023.09.10</jaffree.version>
@@ -214,7 +214,7 @@
214214
<dependency>
215215
<groupId>es.blackleg</groupId>
216216
<artifactId>jlibnotify</artifactId>
217-
<version>1.1.4</version>
217+
<version>1.1.5</version>
218218
<exclusions>
219219
<exclusion>
220220
<groupId>net.java.dev.jna</groupId>

src/main/java/mediathek/tool/ttml/TimedTextMarkupLanguageParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ public void toSrt(Path srtFile) {
313313
counter++;
314314
}
315315
} catch (Exception ex) {
316-
logger.error("File: " + srtFile, ex);
316+
logger.error("File: {}", srtFile, ex);
317317
}
318318
}
319319

0 commit comments

Comments
 (0)