Update of /var/cvs/src/org/mmbase/bridge/implementation
In directory james.mmbase.org:/tmp/cvs-serv3590
Modified Files:
BasicList.java
Log Message:
member is never changed, making it final proves that
See also: http://cvs.mmbase.org/viewcvs/src/org/mmbase/bridge/implementation
Index: BasicList.java
===================================================================
RCS file: /var/cvs/src/org/mmbase/bridge/implementation/BasicList.java,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -b -r1.33 -r1.34
--- BasicList.java 13 Jun 2008 10:51:34 -0000 1.33
+++ BasicList.java 6 Nov 2008 12:24:03 -0000 1.34
@@ -18,13 +18,13 @@
* This is the base class for all basic implementations of the bridge lists.
*
* @author Pierre van Rooden
- * @version $Id: BasicList.java,v 1.33 2008/06/13 10:51:34 michiel Exp $
+ * @version $Id: BasicList.java,v 1.34 2008/11/06 12:24:03 michiel Exp $
*/
public class BasicList<E extends Comparable<? super E>> extends ArrayList<E>
implements BridgeList<E> {
private static final Logger log =
Logging.getLoggerInstance(BasicList.class);
- private Map<Object, Object> properties = new HashMap<Object, Object>();
+ private final Map<Object, Object> properties = new HashMap<Object,
Object>();
private boolean converted = false;
@@ -41,7 +41,7 @@
}
public void setProperty(Object key, Object value) {
- properties.put(key,value);
+ properties.put(key, value);
}
/**
_______________________________________________
Cvs mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/cvs