mirror of
https://github.com/apache/commons-collections.git
synced 2025-02-07 02:29:14 +00:00
Make MutableInteger inner class protected
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131460 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b7dff14128
commit
dccae620fe
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/bag/AbstractMapBag.java,v 1.7 2003/12/24 23:22:54 scolebourne Exp $
|
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/bag/AbstractMapBag.java,v 1.8 2003/12/28 14:46:28 scolebourne Exp $
|
||||||
* ====================================================================
|
* ====================================================================
|
||||||
*
|
*
|
||||||
* The Apache Software License, Version 1.1
|
* The Apache Software License, Version 1.1
|
||||||
@ -79,7 +79,7 @@ import org.apache.commons.collections.set.UnmodifiableSet;
|
|||||||
* the number of occurrences of that element in the bag.
|
* the number of occurrences of that element in the bag.
|
||||||
*
|
*
|
||||||
* @since Commons Collections 3.0
|
* @since Commons Collections 3.0
|
||||||
* @version $Revision: 1.7 $ $Date: 2003/12/24 23:22:54 $
|
* @version $Revision: 1.8 $ $Date: 2003/12/28 14:46:28 $
|
||||||
*
|
*
|
||||||
* @author Chuck Burdick
|
* @author Chuck Burdick
|
||||||
* @author Michael A. Smith
|
* @author Michael A. Smith
|
||||||
@ -431,10 +431,10 @@ public abstract class AbstractMapBag implements Bag {
|
|||||||
|
|
||||||
//-----------------------------------------------------------------------
|
//-----------------------------------------------------------------------
|
||||||
/**
|
/**
|
||||||
* Mutable integer class for storing the data
|
* Mutable integer class for storing the data.
|
||||||
*/
|
*/
|
||||||
static class MutableInteger {
|
protected static class MutableInteger {
|
||||||
int value;
|
protected int value;
|
||||||
|
|
||||||
MutableInteger(int value) {
|
MutableInteger(int value) {
|
||||||
this.value = value;
|
this.value = value;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user