From bd4a04e7c2e851b66cde9cf71e9ce3bc6fb2a1ac Mon Sep 17 00:00:00 2001 From: Sam Rabin Date: Fri, 6 Oct 2023 13:39:21 -0600 Subject: [PATCH] Remove redundant check in CLMBuildNamelist.pm. --- bld/CLMBuildNamelist.pm | 4 ---- 1 file changed, 4 deletions(-) diff --git a/bld/CLMBuildNamelist.pm b/bld/CLMBuildNamelist.pm index 8eaa4ece8b..65943339a1 100755 --- a/bld/CLMBuildNamelist.pm +++ b/bld/CLMBuildNamelist.pm @@ -3362,10 +3362,6 @@ sub setup_logic_hillslope { if ( (! &value_is_true($use_hillslope)) && &value_is_true($use_hillslope_routing) ) { $log->fatal_error("Cannot turn on use_hillslope_routing when use_hillslope is off\n" ); } - my $downscale_hillslope_meteorology = $nl->get_value('use_hillslope_routing'); - if ( (! &value_is_true($use_hillslope)) && &value_is_true($downscale_hillslope_meteorology) ) { - $log->fatal_error("Cannot turn on downscale_hillslope_meteorology when use_hillslope is off\n" ); - } } #-------------------------------------------------------------------------------