From 544dd3b3747b2e2f59831a123a2e8208d2f96b67 Mon Sep 17 00:00:00 2001 From: zhaocy Date: Fri, 22 Jul 2022 18:23:37 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E9=94=99=E8=AF=AF=E5=BC=95?= =?UTF-8?q?=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/task/model_task.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/modules/task/model_task.go b/modules/task/model_task.go index ed63a0279..7c1c5de0c 100644 --- a/modules/task/model_task.go +++ b/modules/task/model_task.go @@ -19,14 +19,12 @@ type ModelTask struct { modules.MCompModel moduleTask *ModuleTask - handleHandle ITaskHandle } func (this *ModelTask) Init(service core.IService, module core.IModule, comp core.IModuleComp, options core.IModuleOptions) (err error) { err = this.MCompModel.Init(service, module, comp, options) this.moduleTask = module.(*ModuleTask) this.TableName = string(TableTask) - this.handleHandle = new(TaskHandler) return }