Skip to content

Commit

Permalink
Bump dependencies. Minor refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
ullenius committed Jun 24, 2023
1 parent 2bd8384 commit 0e9d5e3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<groupId>se.anosh</groupId>
<artifactId>jbstag</artifactId>
<name>jbstag</name>
<version>0.9.1-SNAPSHOT</version>
<version>0.9.2-SNAPSHOT</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -38,7 +38,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<version>4.13.2</version>
<scope>test</scope>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/se/anosh/jbstag/util/FileFinder.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ void match(Path file) {
// Invoke the pattern matching
// method on each file.
@Override
public FileVisitResult visitFile(final Path file, final BasicFileAttributes attrs) throws IOException {
public FileVisitResult visitFile(final Path file, final BasicFileAttributes attrs) {
match(file);
return FileVisitResult.CONTINUE;
}
Expand Down
1 change: 0 additions & 1 deletion src/test/java/se/anosh/jbstag/util/TraverseFilesTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import org.junit.Test;

import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.List;
Expand Down

0 comments on commit 0e9d5e3

Please sign in to comment.