You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/08/30 22:31:44 UTC

[commons-lang] branch master updated: Add semicolon (#581)

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git


The following commit(s) were added to refs/heads/master by this push:
     new ddac01f  Add semicolon (#581)
ddac01f is described below

commit ddac01fc9a00d8b70b7a679c0abd89dc861573d6
Author: iamchao1129 <ch...@buu.edu.cn>
AuthorDate: Mon Aug 31 06:31:34 2020 +0800

    Add semicolon (#581)
    
    Co-authored-by: zhangchao36 <zh...@jd.com>
---
 .../java/org/apache/commons/lang3/exception/ContextedException.java     | 2 +-
 .../org/apache/commons/lang3/exception/ContextedRuntimeException.java   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/lang3/exception/ContextedException.java b/src/main/java/org/apache/commons/lang3/exception/ContextedException.java
index 02b2b22..1a6825d 100644
--- a/src/main/java/org/apache/commons/lang3/exception/ContextedException.java
+++ b/src/main/java/org/apache/commons/lang3/exception/ContextedException.java
@@ -45,7 +45,7 @@ import org.apache.commons.lang3.tuple.Pair;
  *     throw new ContextedException("Error posting account transaction", e)
  *          .addContextValue("Account Number", accountNumber)
  *          .addContextValue("Amount Posted", amountPosted)
- *          .addContextValue("Previous Balance", previousBalance)
+ *          .addContextValue("Previous Balance", previousBalance);
  *   }
  * }
  * </pre>
diff --git a/src/main/java/org/apache/commons/lang3/exception/ContextedRuntimeException.java b/src/main/java/org/apache/commons/lang3/exception/ContextedRuntimeException.java
index 12db259..394b070 100644
--- a/src/main/java/org/apache/commons/lang3/exception/ContextedRuntimeException.java
+++ b/src/main/java/org/apache/commons/lang3/exception/ContextedRuntimeException.java
@@ -45,7 +45,7 @@ import org.apache.commons.lang3.tuple.Pair;
  *     throw new ContextedRuntimeException("Error posting account transaction", e)
  *          .addContextValue("Account Number", accountNumber)
  *          .addContextValue("Amount Posted", amountPosted)
- *          .addContextValue("Previous Balance", previousBalance)
+ *          .addContextValue("Previous Balance", previousBalance);
  *   }
  * }
  * </pre>