From 80ba246aeb7ba0c8cc75a4401eb01140474cdf71 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 4bc96b5..c854f55 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() { + } }