Skip to content

Commit

Permalink
chore(web-app-template): Alphabetically order functions
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Steenbergen <opensource@steenbe.nl>
  • Loading branch information
tsteenbe committed Apr 30, 2024
1 parent 4c334aa commit 16a8501
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions plugins/reporters/web-app-template/src/models/WebAppOrtResult.js
Original file line number Diff line number Diff line change
Expand Up @@ -391,14 +391,6 @@ class WebAppOrtResult {
return this.#dependencyTrees;
}

get treeNodesByPackageIndexMap() {
return this.#treeNodesByPackageIndexMap;
}

get treeNodesByKeyMap() {
return this.#treeNodesByKeyMap;
}

get detectedLicenses() {
return this.#detectedLicenses;
}
Expand Down Expand Up @@ -487,6 +479,14 @@ class WebAppOrtResult {
return this.#statistics;
}

get treeNodesByPackageIndexMap() {
return this.#treeNodesByPackageIndexMap;
}

get treeNodesByKeyMap() {
return this.#treeNodesByKeyMap;
}

get vulnerabilities() {
return this.#vulnerabilities;
}
Expand Down

0 comments on commit 16a8501

Please sign in to comment.