Skip to content

Commit

Permalink
Lint fix (#831)
Browse files Browse the repository at this point in the history
Signed-off-by: Prabhu Subramanian <[email protected]>
  • Loading branch information
prabhu authored Jan 26, 2024
1 parent b690d69 commit 5bb2d3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1391,7 +1391,7 @@ export const createJavaBom = async (path, options) => {
parentComponent = {
name: rootProject,
type: "application",
...(retMap.metadata || {})
...retMap.metadata
};
const parentPurl = new PackageURL(
"maven",
Expand All @@ -1415,7 +1415,7 @@ export const createJavaBom = async (path, options) => {
name: rspName,
type: "application",
qualifiers: { type: "jar" },
...(retMap.metadata || {})
...retMap.metadata
};
const rootSubProjectPurl = new PackageURL(
"maven",
Expand Down

0 comments on commit 5bb2d3f

Please sign in to comment.