Skip to content

Commit ba9ae08

Browse files
committed
PR feedback
1 parent ed81852 commit ba9ae08

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

src/Microsoft.DotNet.Interactive.HttpRequestParser/Parser/HttpRequestParser.cs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -73,24 +73,13 @@ public HttpSyntaxTree Parse()
7373

7474
if (ParseRequestSeparator() is { } separatorNode)
7575
{
76-
// FIX: (Parse) uncovered
7776
_syntaxTree.RootNode.Add(separatorNode);
7877
}
7978
}
8079

8180
return _syntaxTree;
8281
}
8382

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-
9483
private static void PrependCommentsIfAny(List<HttpCommentNode> commentsToPrepend, HttpSyntaxNode prependToNode)
9584
{
9685
foreach (var comment in commentsToPrepend)

0 commit comments

Comments
 (0)