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-collections.git

commit e99c2aeb9f0edabab8c139f4d609699f783c1d59
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Sep 1 16:07:49 2024 -0400

    Whitespace
---
 src/main/java/org/apache/commons/collections4/bag/AbstractMapBag.java | 4 ++++
 1 file changed, 4 insertions(+)

diff --git 
a/src/main/java/org/apache/commons/collections4/bag/AbstractMapBag.java 
b/src/main/java/org/apache/commons/collections4/bag/AbstractMapBag.java
index e9f2bfe84..f4be8902a 100644
--- a/src/main/java/org/apache/commons/collections4/bag/AbstractMapBag.java
+++ b/src/main/java/org/apache/commons/collections4/bag/AbstractMapBag.java
@@ -109,10 +109,12 @@ public abstract class AbstractMapBag<E> implements Bag<E> 
{
             canRemove = false;
         }
     }
+
     /**
      * Mutable integer class for storing the data.
      */
     protected static class MutableInteger {
+
         /** The value of this mutable. */
         protected int value;
 
@@ -137,8 +139,10 @@ public abstract class AbstractMapBag<E> implements Bag<E> {
             return value;
         }
     }
+
     /** The map to use to store the data */
     private transient Map<E, MutableInteger> map;
+
     /** The current total size of the bag */
     private int size;
 

Reply via email to