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 2022/08/06 18:11:35 UTC

[commons-lang] branch master updated: Format tweak

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 912389861 Format tweak
912389861 is described below

commit 912389861cdb441458b134f5e753af84da8a3355
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Aug 6 14:11:27 2022 -0400

    Format tweak
---
 src/main/java/org/apache/commons/lang3/CharRange.java | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/main/java/org/apache/commons/lang3/CharRange.java b/src/main/java/org/apache/commons/lang3/CharRange.java
index e543d2f2e..73180f611 100644
--- a/src/main/java/org/apache/commons/lang3/CharRange.java
+++ b/src/main/java/org/apache/commons/lang3/CharRange.java
@@ -41,8 +41,10 @@ final class CharRange implements Iterable<Character>, Serializable {
 
     /** The first character, inclusive, in the range. */
     private final char start;
+
     /** The last character, inclusive, in the range. */
     private final char end;
+
     /** True if the range is everything except the characters specified. */
     private final boolean negated;