Skip to content

Commit bb5c1a3

Browse files
committed
delete comment
1 parent bd8bf8f commit bb5c1a3

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

internal/cli/command/issues/issues.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ import (
1717
"github.com/urfave/cli/v3"
1818
)
1919

20-
// IssueServiceProvider es una interfaz para obtener el servicio de issues de manera lazy
2120
type IssueServiceProvider func(ctx context.Context) (ports.IssueGeneratorService, error)
2221

2322
// IssuesCommandFactory es el factory para crear el comando de issues.
@@ -348,7 +347,6 @@ func (f *IssuesCommandFactory) checkoutBranch(branchName string) error {
348347
return nil
349348
}
350349

351-
// newLinkCommand crea el subcomando 'link'.
352350
func (f *IssuesCommandFactory) newLinkCommand(t *i18n.Translations, cfg *config.Config) *cli.Command {
353351
return &cli.Command{
354352
Name: "link",
@@ -373,7 +371,7 @@ func (f *IssuesCommandFactory) newLinkCommand(t *i18n.Translations, cfg *config.
373371
}
374372

375373
// createLinkAction crea la acción para linkear un PR a una issue.
376-
func (f *IssuesCommandFactory) createLinkAction(t *i18n.Translations, cfg *config.Config) cli.ActionFunc {
374+
func (f *IssuesCommandFactory) createLinkAction(t *i18n.Translations, _ *config.Config) cli.ActionFunc {
377375
return func(ctx context.Context, command *cli.Command) error {
378376
prNumber := command.Int("pr")
379377
issueNumber := command.Int("issue")

0 commit comments

Comments
 (0)