Skip to content

Commit 6ee3070

Browse files
committed
Remove extraneous deprecations
Signed-off-by: Ben Sherman <[email protected]>
1 parent 966c3ac commit 6ee3070

File tree

4 files changed

+0
-4
lines changed

4 files changed

+0
-4
lines changed

modules/compiler/src/main/java/script/dsl/FeatureFlagDsl.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717

1818
public class FeatureFlagDsl {
1919

20-
@Deprecated
2120
@FeatureFlag("nextflow.enable.configProcessNamesValidation")
2221
@Description("""
2322
When `true`, prints a warning for every `withName:` process selector that doesn't match a process in the pipeline (default: `true`).

modules/compiler/src/main/java/script/dsl/ProcessDsl.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,6 @@ Declare a variable input. The received value can be any type, and it will be mad
357357
""")
358358
void tuple(Object... args);
359359

360-
@Deprecated
361360
@Description("""
362361
Declare an `each` input.
363362
""")

modules/compiler/src/main/java/script/dsl/WorkflowDsl.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,6 @@ public interface WorkflowDsl extends DslScope {
199199
""")
200200
Channel max(Channel source, Closure comparator);
201201

202-
@Deprecated
203202
@Operator
204203
@Description("""
205204
The `merge` operator joins the values from two or more channels into a new channel.

modules/compiler/src/main/java/script/types/Channel.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,6 @@ public static Channel<Path> watchPath(String filePattern, String events) {
306306
""")
307307
public abstract Channel max(Closure comparator);
308308

309-
@Deprecated
310309
@Operator
311310
@Description("""
312311
The `merge` operator joins the values from two or more channels into a new channel.

0 commit comments

Comments
 (0)