Skip to content

Commit b74225c

Browse files
committed
Lint
1 parent 2992770 commit b74225c

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

internal/config/generator.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ type issueTypeFieldConf struct {
5454
}
5555
}
5656

57-
// MTLS specific config
57+
// MTLS authtype specific config.
5858
type JiraCLIMTLSConfig struct {
5959
CaCert string
6060
ClientCert string

pkg/jira/client.go

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ func (e Errors) String() string {
9696
// Header is a key, value pair for request headers.
9797
type Header map[string]string
9898

99-
// MTLS authtype specific config
99+
// MTLS authtype specific config.
100100
type MTLSConfig struct {
101101
CaCert string
102102
ClientCert string
@@ -131,9 +131,6 @@ type ClientFunc func(*Client)
131131

132132
// NewClient instantiates new jira client.
133133
func NewClient(c Config, opts ...ClientFunc) *Client {
134-
135-
log.Print(c.MTLSConfig)
136-
137134
client := Client{
138135
server: strings.TrimSuffix(c.Server, "/"),
139136
login: c.Login,

0 commit comments

Comments
 (0)