You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@santuario.apache.org by mu...@apache.org on 2006/06/02 16:01:43 UTC

svn commit: r411161 - /xml/security/trunk/src/org/apache/xml/security/keys/storage/implementations/CertsInFilesystemDirectoryResolver.java

Author: mullan
Date: Fri Jun  2 07:01:43 2006
New Revision: 411161

URL: http://svn.apache.org/viewvc?rev=411161&view=rev
Log:
Fix findbugs bug:
Make FileSystemIterator a static inner class.

Modified:
    xml/security/trunk/src/org/apache/xml/security/keys/storage/implementations/CertsInFilesystemDirectoryResolver.java

Modified: xml/security/trunk/src/org/apache/xml/security/keys/storage/implementations/CertsInFilesystemDirectoryResolver.java
URL: http://svn.apache.org/viewvc/xml/security/trunk/src/org/apache/xml/security/keys/storage/implementations/CertsInFilesystemDirectoryResolver.java?rev=411161&r1=411160&r2=411161&view=diff
==============================================================================
--- xml/security/trunk/src/org/apache/xml/security/keys/storage/implementations/CertsInFilesystemDirectoryResolver.java (original)
+++ xml/security/trunk/src/org/apache/xml/security/keys/storage/implementations/CertsInFilesystemDirectoryResolver.java Fri Jun  2 07:01:43 2006
@@ -17,8 +17,6 @@
  */
 package org.apache.xml.security.keys.storage.implementations;
 
-
-
 import java.io.File;
 import java.io.FileInputStream;
 import java.io.FileNotFoundException;
@@ -36,7 +34,6 @@
 import org.apache.xml.security.keys.storage.StorageResolverSpi;
 import org.apache.xml.security.utils.Base64;
 
-
 /**
  * This {@link StorageResolverSpi} makes all raw (binary) {@link X509Certificate}s
  * which reside as files in a single directory available to the {@link org.apache.xml.security.keys.storage.StorageResolver}.
@@ -156,7 +153,7 @@
     * @author $Author$
     * @version $Revision$
     */
-   class FilesystemIterator implements Iterator {
+   private static class FilesystemIterator implements Iterator {
 
       /** Field _certs */
       List _certs = null;