dgraham 2003/09/21 16:31:11
Modified: mapper/src/share/org/apache/commons/mapper
MapperFactory.java
Log:
Made mapperCache private so it wouldn't expose too many
implementation details.
Revision Changes Path
1.9 +4 -4
jakarta-commons-sandbox/mapper/src/share/org/apache/commons/mapper/MapperFactory.java
Index: MapperFactory.java
===================================================================
RCS file:
/home/cvs/jakarta-commons-sandbox/mapper/src/share/org/apache/commons/mapper/MapperFactory.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- MapperFactory.java 9 Sep 2003 00:44:41 -0000 1.8
+++ MapperFactory.java 21 Sep 2003 23:31:11 -0000 1.9
@@ -109,7 +109,7 @@
* String name which is often a domain class' name and the value is a
* <code>Mapper</code> instance.
*/
- protected Map mapperCache = new HashMap();
+ private Map mapperCache = new HashMap();
/**
* The List of listeners to notify when a Mapper is created.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]