Skip to content

Commit

Permalink
fix: remove redundant parenthese
Browse files Browse the repository at this point in the history
  • Loading branch information
isc-shuliu committed Nov 26, 2024
1 parent 85bcc3b commit 00a7572
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cls/IPM/Repo/Http/PackageService.cls
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Method GetHttpRequest(tLocation As %IPM.DataType.RepoLocation = {..Location}) As
} ElseIf ..TokenAuthMethod = "bearer" {
Do tRequest.SetHeader("Authorization","Bearer " _ ..Token)
} Else {
$$$ThrowStatus($$$ERROR(($$$GeneralError, $$$FormatText("Unknown token auth method: ""%1""", ..TokenAuthMethod))))
$$$ThrowStatus($$$ERROR($$$GeneralError,$$$FormatText("Unknown token auth method: ""%1""", ..TokenAuthMethod)))
}
}
If (..Username '= "") && (..Password '= "") {
Expand Down

0 comments on commit 00a7572

Please sign in to comment.