Skip to content

Commit

Permalink
Merge pull request #310 from Vampire/fix-typo
Browse files Browse the repository at this point in the history
Fix typo in variable name
  • Loading branch information
jk1 authored May 27, 2024
2 parents 90d6073 + 43f52a9 commit a420142
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,10 +148,10 @@ class LicenseBundleNormalizer implements DependencyFilter {
}

protected void mergeConfigIntoGlobalConfig(LicenseBundleNormalizerConfig mergeIn) {
def existingBungleNames = normalizerConfig.bundles*.bundleName
def existingBundleNames = normalizerConfig.bundles*.bundleName

mergeIn.bundles.each { NormalizerLicenseBundle bundle ->
if (!existingBungleNames.contains(bundle.bundleName)) {
if (!existingBundleNames.contains(bundle.bundleName)) {
normalizerConfig.bundles << bundle
}
}
Expand Down

0 comments on commit a420142

Please sign in to comment.