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:
@@ -1275,12 +1275,6 @@ impl<'a> StringReader<'a> {
|
|||||||
let mut content_end_bpos;
|
let mut content_end_bpos;
|
||||||
let mut valid = true;
|
let mut valid = true;
|
||||||
'outer: loop {
|
'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 {
|
match self.ch {
|
||||||
None => {
|
None => {
|
||||||
self.fail_unterminated_raw_string(start_bpos, hash_count);
|
self.fail_unterminated_raw_string(start_bpos, hash_count);
|
||||||
|
|||||||
Reference in New Issue
Block a user