This is an automated email from the ASF dual-hosted git repository.
ppkarwasz pushed a change to branch fix/pattern-length
in repository https://gitbox.apache.org/repos/asf/commons-lang.git
discard 9c4422421 Fix `WordUtils.wrap` for `wrapOn` matches different from one
character
add b401c34a4 StrBuilder.readFrom(Readable), exposes stale internal buffer
to Readable parameter (#1652)
add f7608d219 StrBuilder.readFrom(Readable) exposes stale internal buffer
to Readable parameter (#1652).
add 245d8dffc EqualsBuilder.reflectionEquals() array branch missing cycle
guard causes (#1653)
add 4069652c9 EqualsBuilder.reflectionEquals() array branch missing cycle
guard causes stack overflow on self-referential Object arrays (#1653).
new 8dffc25a8 Fix `WordUtils.wrap` for `wrapOn` matches different from one
character
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (9c4422421)
\
N -- N -- N refs/heads/fix/pattern-length (8dffc25a8)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
src/changes/changes.xml | 2 +
.../commons/lang3/builder/EqualsBuilder.java | 38 ++++----
.../org/apache/commons/lang3/text/StrBuilder.java | 5 +-
.../EqualsBuilderReflectionEqualsCycleTest.java | 61 ++++++++++++
.../commons/lang3/text/StrBuilderClearTest.java | 107 +++++++++++++++++++++
5 files changed, 192 insertions(+), 21 deletions(-)
create mode 100644
src/test/java/org/apache/commons/lang3/builder/EqualsBuilderReflectionEqualsCycleTest.java
create mode 100644
src/test/java/org/apache/commons/lang3/text/StrBuilderClearTest.java