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 d2f7ae0 commit 1e4bebf
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);
}

}
}
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 1e4bebf

Please sign in to comment.