Author: antonio Date: Tue Jan 11 23:30:49 2005 New Revision: 124945 URL: http://svn.apache.org/viewcvs?view=rev&rev=124945 Log: fileCache should be final Modified: cocoon/trunk/tools/src/anttasks/DocumentCache.java
Modified: cocoon/trunk/tools/src/anttasks/DocumentCache.java Url: http://svn.apache.org/viewcvs/cocoon/trunk/tools/src/anttasks/DocumentCache.java?view=diff&rev=124945&p1=cocoon/trunk/tools/src/anttasks/DocumentCache.java&r1=124944&p2=cocoon/trunk/tools/src/anttasks/DocumentCache.java&r2=124945 ============================================================================== --- cocoon/trunk/tools/src/anttasks/DocumentCache.java (original) +++ cocoon/trunk/tools/src/anttasks/DocumentCache.java Tue Jan 11 23:30:49 2005 @@ -46,7 +46,7 @@ public final class DocumentCache { /** Cache the read configuration files (Documents) */ - protected static Map fileCache = new HashMap(); + protected final static Map fileCache = new HashMap(); /** The document builder */ private static DocumentBuilder builder;