Remove redundant, commented out code
It was commented out as part of
8a8e497ae7
.
Done probably by accident, since the code in question was moved to a
match arm, along with newly introduced logic to detect bare CRs in raw
strings.
This commit is contained in:
parent
b8e3533b73
commit
08ede49dcb
1 changed files with 0 additions and 6 deletions
|
@ -1275,12 +1275,6 @@ impl<'a> StringReader<'a> {
|
|||
let mut content_end_bpos;
|
||||
let mut valid = true;
|
||||
'outer: loop {
|
||||
// if self.ch_is('"') {
|
||||
// content_end_bpos = self.pos;
|
||||
// for _ in 0..hash_count {
|
||||
// self.bump();
|
||||
// if !self.ch_is('#') {
|
||||
// continue 'outer;
|
||||
match self.ch {
|
||||
None => {
|
||||
self.fail_unterminated_raw_string(start_bpos, hash_count);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue