From d0f2d356bd9d84306be3007e9ecc4e9d5d8645cf Mon Sep 17 00:00:00 2001 From: JiangJun <2680104782@qq.com> Date: Fri, 20 Aug 2021 14:06:21 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E4=BF=AE=E6=94=B9=E5=86=85=E5=AE=B9?= =?UTF-8?q?=E3=80=91=EF=BC=9Acodecheck?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../link/fls/swipestacksample/snackbar/SnackBar.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/entry/src/main/java/link/fls/swipestacksample/snackbar/SnackBar.java b/entry/src/main/java/link/fls/swipestacksample/snackbar/SnackBar.java index b5e2c7b..123569d 100644 --- a/entry/src/main/java/link/fls/swipestacksample/snackbar/SnackBar.java +++ b/entry/src/main/java/link/fls/swipestacksample/snackbar/SnackBar.java @@ -174,9 +174,9 @@ public class SnackBar { * * @param messageId the resource id of the string to display * @return this builder - * @throws NotExistException - * @throws WrongTypeException - * @throws IOException + * @throws NotExistException NotExistException + * @throws WrongTypeException WrongTypeException + * @throws IOException IOException */ public Builder withMessageId(int messageId) throws NotExistException, WrongTypeException, IOException { mMessage = mContext.getResourceManager().getSolidXml(messageId).getRoot().getStringValue(); @@ -199,9 +199,9 @@ public class SnackBar { * * @param actionMessageResId the resource id of the string to display * @return this builder - * @throws NotExistException - * @throws WrongTypeException - * @throws IOException + * @throws NotExistException NotExistException + * @throws WrongTypeException WrongTypeException + * @throws IOException IOException */ public Builder withActionMessageId(int actionMessageResId) throws NotExistException, WrongTypeException, IOException { if (actionMessageResId > 0) { -- Gitee