File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -561,7 +561,7 @@ fn run(cli: Cli) -> ExitCode {
561561 Out : Debug + Default + EnumSetType ,
562562 {
563563 let reconciled = {
564- let reported = |platform, build_profile| {
564+ let reported = |( platform, build_profile) | {
565565 reported
566566 . get ( & platform)
567567 . and_then ( |rep| rep. get ( & build_profile) )
@@ -584,14 +584,12 @@ fn run(cli: Cli) -> ExitCode {
584584 } ;
585585
586586 ExpandedPropertyValue :: from_query ( |platform, build_profile| {
587- resolve (
588- meta_expected[ ( platform, build_profile) ] ,
589- reported ( platform, build_profile) ,
590- )
587+ let key = ( platform, build_profile) ;
588+ resolve ( meta_expected[ key] , reported ( key) )
591589 } )
592590 } else {
593591 ExpandedPropertyValue :: from_query ( |platform, build_profile| {
594- reported ( platform, build_profile) . unwrap_or_default ( )
592+ reported ( ( platform, build_profile) ) . unwrap_or_default ( )
595593 } )
596594 }
597595 } ;
You can’t perform that action at this time.
0 commit comments