diff --git a/src/java/org/apache/commons/collections/BeanMap.java b/src/java/org/apache/commons/collections/BeanMap.java index 0b01e7f25..c5be34e55 100644 --- a/src/java/org/apache/commons/collections/BeanMap.java +++ b/src/java/org/apache/commons/collections/BeanMap.java @@ -1,5 +1,5 @@ /* - * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/BeanMap.java,v 1.16 2003/02/19 20:14:25 scolebourne Exp $ + * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/BeanMap.java,v 1.17 2003/03/03 19:41:29 scolebourne Exp $ * ==================================================================== * * The Apache Software License, Version 1.1 @@ -82,7 +82,7 @@ import java.util.Set; * property is considered non existent in the Map * * @since Commons Collections 1.0 - * @version $Revision: 1.16 $ $Date: 2003/02/19 20:14:25 $ + * @version $Revision: 1.17 $ $Date: 2003/03/03 19:41:29 $ * * @author James Strachan * @author Stephen Colebourne @@ -96,13 +96,13 @@ public class BeanMap extends AbstractMap implements Cloneable { private transient HashMap types = new HashMap(); /** - * An empty array. Used to invoke accessors via reflection. + * An empty array. Used to invoke accessors via reflection. */ public static final Object[] NULL_ARGUMENTS = {}; /** - * Maps primitive Class types to transformers. The transformer - * transform strings into the appropriate primitive wrapper. + * Maps primitive Class types to transformers. The transformer + * transform strings into the appropriate primitive wrapper. */ public static HashMap defaultTransformers = new HashMap(); @@ -178,17 +178,17 @@ public class BeanMap extends AbstractMap implements Cloneable { //------------------------------------------------------------------------- /** - * Constructs a new empty BeanMap. + * Constructs a new empty BeanMap. */ public BeanMap() { } /** - * Constructs a new BeanMap that operates on the - * specified bean. If the given bean is null, then - * this map will be empty. + * Constructs a new BeanMap that operates on the + * specified bean. If the given bean is null, then + * this map will be empty. * - * @param bean the bean for this map to operate on + * @param bean the bean for this map to operate on */ public BeanMap(Object bean) { this.bean = bean; @@ -199,29 +199,28 @@ public class BeanMap extends AbstractMap implements Cloneable { //------------------------------------------------------------------------- /** - * Clone this bean map using the following process: + * Clone this bean map using the following process: * - *