Remove comments

This commit is contained in:
Wilson Lin 2020-01-26 23:26:47 +13:00
parent 7330b2d24e
commit 2ebfb9d017
2 changed files with 0 additions and 2 deletions

View File

@ -2,7 +2,6 @@ use crate::err::ProcessingResult;
use crate::ErrorType;
use crate::proc::Processor;
// TODO DOC
#[derive(Copy, Clone)]
pub struct ProcessorRange {
pub(super) start: usize,

View File

@ -62,7 +62,6 @@ pub fn process_content(proc: &mut Processor, ns: Namespace, parent: Option<Proce
let mut last_written = ContentType::Start;
// Whether or not currently in whitespace.
let mut ws_skipped = false;
// TODO Comment: Do not always initialise `uep` as `prev_sibling_closing_tag` might get written.
let mut prev_sibling_closing_tag = MaybeClosingTag::none();
// TODO Comment.
let uep = &mut UnintentionalEntityPrevention::new(proc, true);