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:
Stephen Colebourne 2003-12-28 14:46:28 +00:00
parent b7dff14128
commit dccae620fe
1 changed files with 5 additions and 5 deletions

View File

@ -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
@ -79,7 +79,7 @@ import org.apache.commons.collections.set.UnmodifiableSet;
* the number of occurrences of that element in the bag.
*
* @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 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 {
int value;
protected static class MutableInteger {
protected int value;
MutableInteger(int value) {
this.value = value;