Remove Traceable from customevent.rs

This commit is contained in:
Manish Goregaokar 2014-09-29 03:30:03 +05:30
parent 4f574b4732
commit 63dd3070d1
2 changed files with 6 additions and 7 deletions

View file

@ -186,9 +186,9 @@ impl JSTraceable for *mut JSObject {
}
}
impl JSTraceable for Traceable<JSVal> {
impl JSTraceable for JSVal {
fn trace(&self, trc: *mut JSTracer) {
trace_jsval(trc, "val", **self);
trace_jsval(trc, "val", *self);
}
}