Skip to content

Commit

Permalink
chore: upgrade license-checker to 1.12.13 (#1806)
Browse files Browse the repository at this point in the history
* chore: upgrade license-checker to 1.12.13

* fix compilation

* replace the screenshot

* drop the try/catch

* replace the screenshot

---------

Co-authored-by: Zhe Sun <[email protected]>
  • Loading branch information
vaadin-bot and ZheSun88 authored Jun 19, 2024
1 parent 0ad819b commit eebd11c
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>license-checker</artifactId>
<version>1.12.12</version>
<version>1.12.13</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

import java.io.IOException;
import java.io.InputStream;
import java.io.UncheckedIOException;
import java.nio.charset.StandardCharsets;
import java.time.Duration;
import java.util.List;
Expand Down Expand Up @@ -527,12 +528,8 @@ private static class LazyDndSimulationLoad {
private static String loadDndScript(String scriptLocation) {
InputStream stream = AbstractBrowserTestBase.class
.getResourceAsStream(scriptLocation);
try {
return IOUtils.readLines(stream, StandardCharsets.UTF_8)
return IOUtils.readLines(stream, StandardCharsets.UTF_8)
.stream().collect(Collectors.joining("\n"));
} catch (IOException e) {
throw new RuntimeException(e);
}
}
}

Expand Down
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit eebd11c

Please sign in to comment.