This is an automated email from the ASF dual-hosted git repository.
garydgregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-collections.git
The following commit(s) were added to refs/heads/master by this push:
new a70ffd614 Fix trailing whitespace
a70ffd614 is described below
commit a70ffd614602fa07d2429d76f77abcd1816d0be9
Author: Gary Gregory <[email protected]>
AuthorDate: Thu Jul 2 22:08:45 2026 +0000
Fix trailing whitespace
---
src/main/java/org/apache/commons/collections4/MultiSet.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/main/java/org/apache/commons/collections4/MultiSet.java
b/src/main/java/org/apache/commons/collections4/MultiSet.java
index 73a90991b..ead3b5fd4 100644
--- a/src/main/java/org/apache/commons/collections4/MultiSet.java
+++ b/src/main/java/org/apache/commons/collections4/MultiSet.java
@@ -49,7 +49,7 @@ public interface MultiSet<E> extends Collection<E> {
* <p>
* More formally, two entries {@code e1} and {@code e2} represent the
same mapping if
* </p>
- *
+ *
* <pre>
* (e1.getElement() == null ? e2.getElement() == null :
e1.getElement().equals(e2.getElement())) && (e1.getCount() ==
e2.getCount())
* </pre>
@@ -79,7 +79,7 @@ public interface MultiSet<E> extends Collection<E> {
* <p>
* The hash code of a multiset entry {@code e} is defined to be:
* </p>
- *
+ *
* <pre>
* (e==null ? 0 : e.hashCode()) ^ noOccurrences)
* </pre>