You are viewing a plain text version of this content. The canonical link for it is here.
Posted to svn@forrest.apache.org by an...@apache.org on 2005/01/01 20:27:21 UTC

svn commit: r123852 - /forrest/trunk/main/java/org/apache/cocoon/components/source/impl/ZipSourceFactory.java

Author: antonio
Date: Sat Jan  1 11:27:19 2005
New Revision: 123852

URL: http://svn.apache.org/viewcvs?view=rev&rev=123852
Log:
Make static constant final
Modified:
   forrest/trunk/main/java/org/apache/cocoon/components/source/impl/ZipSourceFactory.java

Modified: forrest/trunk/main/java/org/apache/cocoon/components/source/impl/ZipSourceFactory.java
Url: http://svn.apache.org/viewcvs/forrest/trunk/main/java/org/apache/cocoon/components/source/impl/ZipSourceFactory.java?view=diff&rev=123852&p1=forrest/trunk/main/java/org/apache/cocoon/components/source/impl/ZipSourceFactory.java&r1=123851&p2=forrest/trunk/main/java/org/apache/cocoon/components/source/impl/ZipSourceFactory.java&r2=123852
==============================================================================
--- forrest/trunk/main/java/org/apache/cocoon/components/source/impl/ZipSourceFactory.java	(original)
+++ forrest/trunk/main/java/org/apache/cocoon/components/source/impl/ZipSourceFactory.java	Sat Jan  1 11:27:19 2005
@@ -46,7 +46,7 @@
     implements SourceFactory, ThreadSafe, Serviceable {
 
     protected ServiceManager manager;
-    public static String ZIP_SOURCE_SCHEME = "zip:";
+    public static final String ZIP_SOURCE_SCHEME = "zip:";
 
     public Source getSource(String location, Map parameters)
         throws IOException, MalformedURLException {