From 1c6ce34fd0d6f24b83316dc137430a3472f44ae2 Mon Sep 17 00:00:00 2001 From: LeO_wqHyw Date: Wed, 25 Sep 2019 11:18:18 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=8F=8D=E5=B0=84=E5=B7=A5?= =?UTF-8?q?=E5=85=B7=E7=B1=BB=E4=B8=AD=E4=BB=8E=E6=96=B9=E6=B3=95=E7=BC=93?= =?UTF-8?q?=E5=AD=98=E5=8F=96poi=E5=AE=9E=E4=BD=93=E7=B1=BBsetter=E6=97=B6?= =?UTF-8?q?=E6=B2=A1=E6=9C=89setter=E5=8D=B4=E6=8F=90=E7=A4=BA=E6=88=90?= =?UTF-8?q?=E6=B2=A1=E6=9C=89getter=E7=9A=84=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/cn/afterturn/easypoi/util/PoiReflectorUtil.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easypoi-base/src/main/java/cn/afterturn/easypoi/util/PoiReflectorUtil.java b/easypoi-base/src/main/java/cn/afterturn/easypoi/util/PoiReflectorUtil.java index 78a1e29..917565d 100644 --- a/easypoi-base/src/main/java/cn/afterturn/easypoi/util/PoiReflectorUtil.java +++ b/easypoi-base/src/main/java/cn/afterturn/easypoi/util/PoiReflectorUtil.java @@ -309,7 +309,7 @@ public final class PoiReflectorUtil { Method method = setMethods.get(propertyName); if (method == null) { throw new RuntimeException( - "There is no getter for property named '" + propertyName + "' in '" + type + "'"); + "There is no setter for property named '" + propertyName + "' in '" + type + "'"); } return method; } -- Gitee