Skip to content

Commit

Permalink
code doesn't look that suspect after all
Browse files Browse the repository at this point in the history
  • Loading branch information
piscisaureus committed May 29, 2019
1 parent ed399d5 commit c0e8e40
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions textproto/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ export class TextProtoReader {
let line: Uint8Array;

// The first line cannot start with a leading space.
// TODO(piscisaureus): this section looks fishy...
let buf = await this.r.peek(1);
if (buf === EOF) {
return EOF;
Expand All @@ -86,7 +85,6 @@ export class TextProtoReader {
`malformed MIME header initial line: ${str(line)}`
);
}
// TODO(piscisaureus): ...up to here.

while (true) {
let kv = await this.readLineSlice(); // readContinuedLineSlice
Expand Down

0 comments on commit c0e8e40

Please sign in to comment.