1
Fork 0

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:
Igor Matuszewski 2019-05-13 12:07:43 +02:00
parent b8e3533b73
commit 08ede49dcb

View file

@ -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);