diff options
Diffstat (limited to 'components/script/dom/bindings/cell.rs')
-rw-r--r-- | components/script/dom/bindings/cell.rs | 7 |
1 files changed, 0 insertions, 7 deletions
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<T> { value: RefCell<T>, } -// 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<T: Send> Send for DOMRefCell<T> {} -#[allow(unsafe_code)] -unsafe impl<T: Sync> Sync for DOMRefCell<T> {} - // Functionality specific to Servo's `DOMRefCell` type // =================================================== |