From ab3428c254b5193f9afcc4cc9eafbc2a0c265534 Mon Sep 17 00:00:00 2001 From: Victor Porton Date: Sat, 1 Feb 2025 21:49:36 +0200 Subject: [PATCH] remove commented code --- src/dfx/src/commands/rules.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/dfx/src/commands/rules.rs b/src/dfx/src/commands/rules.rs index b4ff752f4e..6c8fe0d868 100644 --- a/src/dfx/src/commands/rules.rs +++ b/src/dfx/src/commands/rules.rs @@ -249,12 +249,7 @@ fn get_build_command(_pool: &CanisterPool, graph: &Graph, node_id: < let node_value = graph.node_weight(node_id).unwrap(); match node_value { Import::Canister(canister_name) => { - // let canister = pool.get_first_canister_with_name(&canister_name).unwrap(); - // if canister.get_info().is_custom() { - // None // no compilation for custom canisters - // } else { Some(format!("dfx canister create --network $(NETWORK) {}\n\tdfx build --no-deps --network $(NETWORK) {}", canister_name, canister_name)) - // } } Import::Ic(_canister_name) => None, Import::Path(_path) => None,