Skip to content

Commit

Permalink
chore: 🔥 Remove unused dbg!(...)
Browse files Browse the repository at this point in the history
  • Loading branch information
KAIYOHUGO committed Jun 14, 2024
1 parent 8a84ea1 commit ff84c94
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/fetch_bedrock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ pub async fn fetch(
};
let lang_id = lang_id.to_lowercase();
set.spawn(async move {
dbg!(&lang_id);
let content = get(url).await?;
let kv = des_bedrock(content).await?;
anyhow::Ok((lang_id, kv))
Expand Down
2 changes: 0 additions & 2 deletions src/fetch_java.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ pub async fn fetch(
set.spawn(async move {
let java = java_package.downloads.client.url.get().await?;
let kv = des_en_us_from_java(java, Some(java_package.downloads.client.size)).await?;
dbg!("en_us");
anyhow::Ok(("en_us".into(), kv))
});

Expand All @@ -40,7 +39,6 @@ pub async fn fetch(
set.spawn(async move {
let reader = obj.url().get().await?;
let kv = task::spawn_blocking(move || des_java(SyncIoBridge::new(reader))).await??;
dbg!(&lang_id);
anyhow::Ok((lang_id, kv))
});

Expand Down

0 comments on commit ff84c94

Please sign in to comment.