Skip to content

Commit

Permalink
Remove leftover dbg!s (FuelLabs#4509)
Browse files Browse the repository at this point in the history
Removed some leftovers from a previous PR.
  • Loading branch information
AlicanC authored Apr 28, 2023
1 parent 3976cd3 commit 53473e3
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions sway-core/src/transform/to_parsed_lang/convert_parse_tree.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4064,7 +4064,6 @@ pub fn cfg_eval(
if let Some(cfg_attrs) = attrs_map.get(&AttributeKind::Cfg) {
for cfg_attr in cfg_attrs {
for arg in &cfg_attr.args {
dbg!(arg.name.as_str());
match arg.name.as_str() {
CFG_TARGET_ARG_NAME => {
if let Some(value) = &arg.value {
Expand Down Expand Up @@ -4101,7 +4100,6 @@ pub fn cfg_eval(
if let Ok(program_type) =
TreeType::from_str(value_str.parsed.as_str())
{
dbg!("kek", &program_type, &context.program_type().unwrap());
if program_type != context.program_type().unwrap() {
return Ok(false);
}
Expand Down

0 comments on commit 53473e3

Please sign in to comment.