Skip to content

Commit

Permalink
clean up whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
hkong-mitre committed Sep 19, 2023
1 parent ef7e905 commit 5a22064
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/CveRecord.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class CveRecord implements CveRecordV5 {
* @returns a CveRecord
*/
static fromCveId(cve_id: string | CveId, cves_directory?:string): CveRecord | undefined {
console.log(`cve_id=${cve_id}`)
console.log(`cve_id=${cve_id}`)
const cveId = new CveId(cve_id)
let path
if ( !cves_directory ) {
Expand All @@ -63,7 +63,7 @@ export class CveRecord implements CveRecordV5 {
else {
path = `${cves_directory}/${cveId.getCvePath()}.json`
}
console.log(`path=${path}`)
console.log(`path=${path}`)
return CveRecord.fromJsonFile(path)
}

Expand Down

0 comments on commit 5a22064

Please sign in to comment.