From 252c889448d5082248441ed11a3a7830d5706c3e Mon Sep 17 00:00:00 2001 From: "Hugh.C" Date: Tue, 16 Jun 2020 16:53:03 +0800 Subject: [PATCH] =?UTF-8?q?REPORT-33031=20review=20=E6=94=B9=E8=BF=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../v2/lowagie/text/html/BorderAttribute.java | 20 +------------------ 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/fine-itext/src/main/java/com/fr/third/v2/lowagie/text/html/BorderAttribute.java b/fine-itext/src/main/java/com/fr/third/v2/lowagie/text/html/BorderAttribute.java index f3365be29..6960b9318 100644 --- a/fine-itext/src/main/java/com/fr/third/v2/lowagie/text/html/BorderAttribute.java +++ b/fine-itext/src/main/java/com/fr/third/v2/lowagie/text/html/BorderAttribute.java @@ -14,38 +14,20 @@ public class BorderAttribute { protected Border bottom = new Border(); protected Border left = new Border(); - public Border getTop() { - return top; - } - - public void setTop(Border top) { - this.top = top; - } + public Border getTop() { return top; } public Border getRight() { return right; } - public void setRight(Border right) { - this.right = right; - } - public Border getBottom() { return bottom; } - public void setBottom(Border bottom) { - this.bottom = bottom; - } - public Border getLeft() { return left; } - public void setLeft(Border left) { - this.left = left; - } - /** * 将解析好的边框属性转化为 BorderAttribute *