Format tweak

This commit is contained in:
Gary Gregory 2022-08-06 14:11:27 -04:00
parent 7170d0e1e8
commit 912389861c
1 changed files with 2 additions and 0 deletions

View File

@ -41,8 +41,10 @@ final class CharRange implements Iterable<Character>, Serializable {
/** The first character, inclusive, in the range. */ /** The first character, inclusive, in the range. */
private final char start; private final char start;
/** The last character, inclusive, in the range. */ /** The last character, inclusive, in the range. */
private final char end; private final char end;
/** True if the range is everything except the characters specified. */ /** True if the range is everything except the characters specified. */
private final boolean negated; private final boolean negated;