Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
JackPGreen authored Oct 7, 2024
1 parent 253af69 commit 9880be2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/modules/manager/maven-wrapper/extract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ const WRAPPER_VERSION_REGEX = regEx(
function extractVersions(fileContent: string): MavenVersionExtract {
const lines = coerceArray(fileContent?.split(newlineRegex));
const maven = extractLineInfo(lines, DISTRIBUTION_URL_REGEX) ?? undefined;
const wrapper = extractLineInfo(lines, WRAPPER_URL_REGEX, WRAPPER_VERSION_REGEX) ?? undefined;
const wrapper =
extractLineInfo(lines, WRAPPER_URL_REGEX, WRAPPER_VERSION_REGEX) ??
undefined;
return { maven, wrapper };
}

Expand Down

0 comments on commit 9880be2

Please sign in to comment.