From a192e51229f7cd0373fb43d59810768da8eec1ca Mon Sep 17 00:00:00 2001 From: Robrecht Cannoodt Date: Tue, 10 Oct 2023 14:06:25 +0200 Subject: [PATCH] update deprecation message --- .../io/viash/platforms/nextflow/channel/preprocessInputs.nf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/io/viash/platforms/nextflow/channel/preprocessInputs.nf b/src/main/resources/io/viash/platforms/nextflow/channel/preprocessInputs.nf index 3d5bce8ad..41d80b809 100644 --- a/src/main/resources/io/viash/platforms/nextflow/channel/preprocessInputs.nf +++ b/src/main/resources/io/viash/platforms/nextflow/channel/preprocessInputs.nf @@ -4,7 +4,7 @@ preprocessInputsDeprecationWarningPrinted = false def preprocessInputsDeprecationWarning() { if (!preprocessInputsDeprecationWarningPrinted) { preprocessInputsDeprecationWarningPrinted = true - System.err.println("Warning: preprocessInputs() is deprecated since Viash 0.9.0.") + System.err.println("Warning: preprocessInputs() is deprecated and will be removed in Viash 0.9.0.") } }