Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
valfirst committed Oct 10, 2024
1 parent 9fc2547 commit 4d82bc1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,5 @@ public String transform(String tableAsString, TableParsers tableParsers, TablePr
{
throw new UncheckedIOException(e);

Check warning on line 79 in vividus-plugin-json/src/main/java/org/vividus/json/transformer/JsonTableTransformer.java

View check run for this annotation

Codecov / codecov/patch

vividus-plugin-json/src/main/java/org/vividus/json/transformer/JsonTableTransformer.java#L79

Added line #L79 was not covered by tests
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -150,11 +150,6 @@ public static URL findResource(Class<?> clazz, String resourceName)
public static File loadFile(Class<?> clazz, String filePath)
{
URL resourceUrl = findResource(clazz, filePath);
return toFile(resourceUrl);
}

private static File toFile(URL resourceUrl)
{
try
{
return Paths.get(resourceUrl.toURI()).toFile();
Expand Down

0 comments on commit 4d82bc1

Please sign in to comment.