From 3467e3da8e425f9bd8cd248801ea71504da9a73b Mon Sep 17 00:00:00 2001
From: overlookmotel <557937+overlookmotel@users.noreply.github.com>
Date: Mon, 10 Jun 2024 12:59:43 +0000
Subject: [PATCH] refactor(transformer): remove outdated comment (#3606)
Remove a TODO comment where the do is done.
This was covered by #3258 and #3287.
---
crates/oxc_transformer/src/react/jsx_self.rs | 4 ----
1 file changed, 4 deletions(-)
diff --git a/crates/oxc_transformer/src/react/jsx_self.rs b/crates/oxc_transformer/src/react/jsx_self.rs
index 091a18d5f6526..7d4fb4bba4adc 100644
--- a/crates/oxc_transformer/src/react/jsx_self.rs
+++ b/crates/oxc_transformer/src/react/jsx_self.rs
@@ -15,10 +15,6 @@ const SELF: &str = "__self";
///
/// In: ``
/// Out: ``
-///
-/// TODO:
-/// *. Omit adding `this` in some conditions
-///
pub struct ReactJsxSelf<'a> {
ctx: Ctx<'a>,
}