0
0
Fork 0
mirror of https://github.com/denoland/rusty_v8.git synced 2025-03-09 13:38:51 -04:00

Remove debug stuff

This commit is contained in:
Bert Belder 2019-10-22 15:31:00 -07:00
parent 9a6e90be38
commit c7eb95df04
No known key found for this signature in database
GPG key ID: 7A77887B2E2ED461

View file

@ -22,7 +22,6 @@ extern "C" {
#[no_mangle]
pub unsafe extern "C" fn v8__Task__BASE__DELETE(this: &mut Task) -> () {
println!("v8__Task__BASE__DELETE");
drop(TaskBase::dispatch_box(this))
}
@ -44,7 +43,6 @@ impl Task {
impl Delete for Task {
fn delete(&'static mut self) {
println!("Task::delete()");
unsafe { v8__Task__DELETE(self) }
}
}