From 51c64e0cd41645899cd94cc1cb6e927957cb05f2 Mon Sep 17 00:00:00 2001 From: naudachu Date: Tue, 27 Jun 2023 11:59:56 +0500 Subject: [PATCH] - remove comment into task controller --- controller/task.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controller/task.go b/controller/task.go index 4adb44a..8749b9f 100644 --- a/controller/task.go +++ b/controller/task.go @@ -40,5 +40,5 @@ func (wc *WorkflowController) CreateTask(t *Task) (*Task, error) { t.Key = issue.Key t.URL = fmt.Sprintf("https://marlerino.youtrack.cloud/issue/%s", issue.Key) - return t, nil //[ ] normal return; + return t, nil }