We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0dd132b commit 806d053Copy full SHA for 806d053
1 file changed
crates/loader/src/lib.rs
@@ -24,7 +24,7 @@ use std::fmt::Debug;
24
use tokio::fs::read;
25
26
pub const CFC_VERSION: usize = 5;
27
-pub const DEBUGGING: bool = true;
+pub const DEBUGGING: bool = false;
28
29
#[derive(Debug)]
30
pub enum LoaderError {
@@ -384,6 +384,12 @@ async fn base_load_classes_zip(
384
mod tests {
385
use parser::dto::JType;
386
387
+ use crate::DEBUGGING;
388
+ #[test]
389
+ fn debugging() {
390
+ assert_eq!(DEBUGGING, false)
391
+ }
392
+
393
#[test]
394
fn ser() {
395
let inp = JType::Void;
0 commit comments