diff --git a/components/script/dom/bindings/cell.rs b/components/script/dom/bindings/cell.rs index 0f1945ef251..eef98076c0b 100644 --- a/components/script/dom/bindings/cell.rs +++ b/components/script/dom/bindings/cell.rs @@ -16,13 +16,6 @@ pub struct DOMRefCell { value: RefCell, } -// FIXME: These two impls make promises that are not quite true, -// but maybe the debug_assert! makes it close enough. -#[allow(unsafe_code)] -unsafe impl Send for DOMRefCell {} -#[allow(unsafe_code)] -unsafe impl Sync for DOMRefCell {} - // Functionality specific to Servo's `DOMRefCell` type // ===================================================