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 committed Jan 28, 2024
1 parent 0f279a3 commit 72f081b
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 @@ -1289,7 +1289,7 @@ export const createJavaBom = async (path, options) => {
parentComponent = {
name: rootProject,
type: "application",
...(retMap.metadata || {})
...retMap.metadata
};
const parentPurl = new PackageURL(
"maven",
Expand All @@ -1313,7 +1313,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 72f081b

Please sign in to comment.