File tree Expand file tree Collapse file tree 1 file changed +0
-11
lines changed
src/Microsoft.DotNet.Interactive.HttpRequestParser/Parser Expand file tree Collapse file tree 1 file changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -73,24 +73,13 @@ public HttpSyntaxTree Parse()
73
73
74
74
if ( ParseRequestSeparator ( ) is { } separatorNode )
75
75
{
76
- // FIX: (Parse) uncovered
77
76
_syntaxTree . RootNode . Add ( separatorNode ) ;
78
77
}
79
78
}
80
79
81
80
return _syntaxTree ;
82
81
}
83
82
84
- private static void AppendCommentsIfAny ( List < HttpCommentNode > commentsToAppend , HttpSyntaxNode prependToNode )
85
- {
86
- foreach ( var comment in commentsToAppend )
87
- {
88
- prependToNode . Add ( comment , addBefore : false ) ;
89
- }
90
-
91
- commentsToAppend . Clear ( ) ;
92
- }
93
-
94
83
private static void PrependCommentsIfAny ( List < HttpCommentNode > commentsToPrepend , HttpSyntaxNode prependToNode )
95
84
{
96
85
foreach ( var comment in commentsToPrepend )
You can’t perform that action at this time.
0 commit comments