Add missing since tag on new constructor

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131798 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2004-06-22 21:54:35 +00:00
parent 1d72d4a31b
commit f71a560c8a
1 changed files with 2 additions and 1 deletions

View File

@ -36,7 +36,7 @@ import org.apache.commons.collections.keyvalue.AbstractMapEntryDecorator;
* @see DualHashBidiMap
* @see DualTreeBidiMap
* @since Commons Collections 3.0
* @version $Id: AbstractDualBidiMap.java,v 1.13 2004/06/11 23:27:37 scolebourne Exp $
* @version $Id: AbstractDualBidiMap.java,v 1.14 2004/06/22 21:54:35 scolebourne Exp $
*
* @author Matthew Hawthorne
* @author Stephen Colebourne
@ -90,6 +90,7 @@ public abstract class AbstractDualBidiMap implements BidiMap {
*
* @param normalMap the normal direction map
* @param reverseMap the reverse direction map
* @since Commons Collections 3.1
*/
protected AbstractDualBidiMap(Map normalMap, Map reverseMap) {
super();