File tree Expand file tree Collapse file tree
src/java/org/apache/commons/io Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7070 * </pre>
7171 *
7272 * @since Commons IO 1.0
73- * @version $Revision: 1.5 $ $Date: 2003/12/30 06:55:58 $
73+ * @version $Revision: 1.6 $ $Date: 2003/12/30 15:17:59 $
7474 *
7575 * @author Henri Yandell
7676 * @author Stephen Colebourne
7979public class DirectoryFileFilter extends AbstractFileFilter {
8080
8181 /** Singleton instance of directory filter */
82- public static IOFileFilter INSTANCE = new DirectoryFileFilter ();
82+ public static final IOFileFilter INSTANCE = new DirectoryFileFilter ();
8383
8484 /**
8585 * Restrictive consructor.
Original file line number Diff line number Diff line change 5959 * A file filter that always returns false.
6060 *
6161 * @since Commons IO 1.0
62- * @version $Revision: 1.5 $ $Date: 2003/12/30 06:55:58 $
62+ * @version $Revision: 1.6 $ $Date: 2003/12/30 15:17:59 $
6363 *
6464 * @author Henri Yandell
6565 * @author Stephen Colebourne
6666 */
6767public class FalseFileFilter implements IOFileFilter {
6868
6969 /** Singleton instance of false filter */
70- public static IOFileFilter INSTANCE = new FalseFileFilter ();
70+ public static final IOFileFilter INSTANCE = new FalseFileFilter ();
7171
7272 /**
7373 * Restrictive consructor.
Original file line number Diff line number Diff line change 5959 * A file filter that always returns true.
6060 *
6161 * @since Commons IO 1.0
62- * @version $Revision: 1.5 $ $Date: 2003/12/30 06:55:58 $
62+ * @version $Revision: 1.6 $ $Date: 2003/12/30 15:17:59 $
6363 *
6464 * @author Henri Yandell
6565 * @author Stephen Colebourne
6666 */
6767public class TrueFileFilter implements IOFileFilter {
6868
6969 /** Singleton instance of true filter */
70- public static IOFileFilter INSTANCE = new TrueFileFilter ();
70+ public static final IOFileFilter INSTANCE = new TrueFileFilter ();
7171
7272 /**
7373 * Restrictive consructor.
Original file line number Diff line number Diff line change 6969 * @author <a href="mailto:ms@collab.net">Michael Salmon</a>
7070 * @author <a href="mailto:jon@collab.net">Jon S. Stevens</a>
7171 * @author <a href="mailto:dlr@finemaltcoding.com">Daniel Rall</a>
72- * @version $Id: LockableFileWriter.java,v 1.5 2003/12/30 06:55 :59 bayard Exp $
72+ * @version $Id: LockableFileWriter.java,v 1.6 2003/12/30 15:19 :59 jeremias Exp $
7373 */
7474public class LockableFileWriter extends Writer {
7575
76- private static String LCK = ".lck" ;
76+ private static final String LCK = ".lck" ;
7777
7878 private File lockFile = null ;
7979
You can’t perform that action at this time.
0 commit comments