Skip to content

Commit

Permalink
fix: remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
hardfist committed Sep 9, 2024
1 parent 73d627c commit b3d04fa
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions crates/rspack_fs/src/native.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ use super::{
Error, Result,
};

#[derive(Debug)]
pub struct NativeFileSystem;

impl WritableFileSystem for NativeFileSystem {
Expand All @@ -35,7 +34,6 @@ cfg_async! {
use futures::future::BoxFuture;

use crate::{AsyncReadableFileSystem, AsyncWritableFileSystem};
#[derive(Debug)]
pub struct AsyncNativeFileSystem;

impl AsyncWritableFileSystem for AsyncNativeFileSystem {
Expand Down
1 change: 0 additions & 1 deletion crates/rspack_fs_node/src/async.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ use rspack_paths::Utf8Path;

use crate::node::ThreadsafeNodeFS;

#[derive(Debug)]
pub struct AsyncNodeWritableFileSystem(ThreadsafeNodeFS);

impl AsyncNodeWritableFileSystem {
Expand Down
1 change: 0 additions & 1 deletion crates/rspack_fs_node/src/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ cfg_async! {
use rspack_napi::threadsafe_function::ThreadsafeFunction;

#[napi(object, object_to_js = false, js_name = "ThreadsafeNodeFS")]
#[derive(Debug)]
pub struct ThreadsafeNodeFS {
#[napi(ts_type = "(name: string, content: Buffer) => Promise<void> | void")]
pub write_file: ThreadsafeFunction<(String, Buffer), ()>,
Expand Down

0 comments on commit b3d04fa

Please sign in to comment.