Skip to content

Commit 9b8669d

Browse files
committed
Move JsonRenderer to language server
Signed-off-by: Ben Sherman <bentshermann@gmail.com>
1 parent 5a39433 commit 9b8669d

File tree

2 files changed

+2
-54
lines changed

2 files changed

+2
-54
lines changed

modules/nextflow/src/main/groovy/nextflow/config/schema/JsonRenderer.groovy

Lines changed: 0 additions & 52 deletions
This file was deleted.

modules/nextflow/src/main/groovy/nextflow/plugin/spec/ConfigSpec.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ import org.codehaus.groovy.ast.ClassNode
2828
@CompileStatic
2929
class ConfigSpec {
3030

31-
static Map<String,?> of(SchemaNode node, String name=null) {
31+
static Map<String,?> of(SchemaNode node, String name) {
3232
return fromNode(node, name)
3333
}
3434

35-
private static Map<String,?> fromNode(SchemaNode node, String name=null) {
35+
private static Map<String,?> fromNode(SchemaNode node, String name) {
3636
if( node instanceof SchemaNode.Option )
3737
return fromOption(node, name)
3838
if( node instanceof SchemaNode.Placeholder )

0 commit comments

Comments
 (0)