From 5b514ab019f1950a135988fdc3d628eed818feaf Mon Sep 17 00:00:00 2001 From: carlosuc3m <100329787@alumnos.uc3m.es> Date: Mon, 15 Jan 2024 15:40:11 +0100 Subject: [PATCH] typo --- .../modelrunner/bioimageio/download/DownloadTracker.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/io/bioimage/modelrunner/bioimageio/download/DownloadTracker.java b/src/main/java/io/bioimage/modelrunner/bioimageio/download/DownloadTracker.java index add67188..c81e8a35 100644 --- a/src/main/java/io/bioimage/modelrunner/bioimageio/download/DownloadTracker.java +++ b/src/main/java/io/bioimage/modelrunner/bioimageio/download/DownloadTracker.java @@ -126,7 +126,7 @@ public class DownloadTracker { * @throws IOException if there i any error related to the download */ private DownloadTracker(String folder, TwoParameterConsumer consumer, List links, Thread thread) throws IOException { - Objects.requireNonNull(folder, "Please provide teh folder where the files are going to be " + Objects.requireNonNull(folder, "Please provide the folder where the files are going to be " + "downloaded."); Objects.requireNonNull(consumer); Objects.requireNonNull(links, "Please provide the links to the files that are going to be downloaded.");