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-text.git
commit 64731e5080b93909bcac2d0176ff1205e07494f0 Author: Gary Gregory <[email protected]> AuthorDate: Wed Jul 1 08:25:14 2020 -0400 Sort members. --- .../org/apache/commons/text/TextStringBuilder.java | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/main/java/org/apache/commons/text/TextStringBuilder.java b/src/main/java/org/apache/commons/text/TextStringBuilder.java index 3999b74..50674cb 100644 --- a/src/main/java/org/apache/commons/text/TextStringBuilder.java +++ b/src/main/java/org/apache/commons/text/TextStringBuilder.java @@ -295,17 +295,6 @@ public class TextStringBuilder implements CharSequence, Appendable, Serializable } /** - * Constructs an instance with the specified initial capacity. - * - * @param initialCapacity - * the initial capacity, zero or less will be converted to 32 - */ - public TextStringBuilder(final int initialCapacity) { - super(); - buffer = new char[initialCapacity <= 0 ? CAPACITY : initialCapacity]; - } - - /** * Constructs an instance from a character sequence, allocating 32 extra characters for growth. * * @param seq the string to copy, null treated as blank string @@ -319,6 +308,17 @@ public class TextStringBuilder implements CharSequence, Appendable, Serializable } /** + * Constructs an instance with the specified initial capacity. + * + * @param initialCapacity + * the initial capacity, zero or less will be converted to 32 + */ + public TextStringBuilder(final int initialCapacity) { + super(); + buffer = new char[initialCapacity <= 0 ? CAPACITY : initialCapacity]; + } + + /** * Constructs an instance from a string, allocating 32 extra characters for growth. * * @param str
