File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2102,14 +2102,14 @@ sub update_state
2102
2102
while (my ($f , $v ) = each (%$updateVersionCache )) {
2103
2103
lcovutil::ignorable_error($lcovutil::ERROR_INTERNAL ,
2104
2104
" unexpected version entry" )
2105
- if exists ($versionCache {$f }) && !( $versionCache {$f } eq $v ) ;
2105
+ if exists ($versionCache {$f }) && $versionCache {$f } ne $v ;
2106
2106
$versionCache {$f } = $v ;
2107
2107
}
2108
2108
my $updateResolveCache = shift ;
2109
2109
while (my ($f , $v ) = each (%$updateResolveCache )) {
2110
2110
lcovutil::ignorable_error($lcovutil::ERROR_INTERNAL ,
2111
2111
" unexpected resolve entry" )
2112
- if exists ($resolveCache {$f }) && !( $resolveCache {$f } eq $v ) ;
2112
+ if exists ($resolveCache {$f }) && $resolveCache {$f } ne $v ;
2113
2113
$resolveCache {$f } = $v ;
2114
2114
}
2115
2115
my $msgTypes = shift ;
You can’t perform that action at this time.
0 commit comments