From 9ba0a23c927f4768a31a6d7d464d6a4e398705e8 Mon Sep 17 00:00:00 2001 From: jinzhao Date: Thu, 31 Oct 2024 17:33:08 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E5=AF=B9constructor=E7=9A=84?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: jinzhao --- library/src/main/ets/model/ImageKnifeOption.ets | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/src/main/ets/model/ImageKnifeOption.ets b/library/src/main/ets/model/ImageKnifeOption.ets index 0944633..7f1c999 100644 --- a/library/src/main/ets/model/ImageKnifeOption.ets +++ b/library/src/main/ets/model/ImageKnifeOption.ets @@ -80,8 +80,8 @@ export class ImageKnifeOption { drawingColorFilter?: ColorFilter | drawing.ColorFilter // 自定义证书路径 caPath?: string - constructor(option?:ImageOption) { - this.caPath = option?.caPath + constructor() { + } }