Author: scolebourne
Date: Sun Jan  6 02:01:26 2008
New Revision: 609286

URL: http://svn.apache.org/viewvc?rev=609286&view=rev
Log:
Style fix - Unify @since tag format

Modified:
    
commons/proper/io/trunk/src/java/org/apache/commons/io/IOExceptionWithCause.java
    
commons/proper/io/trunk/src/java/org/apache/commons/io/filefilter/FileFilterUtils.java

Modified: 
commons/proper/io/trunk/src/java/org/apache/commons/io/IOExceptionWithCause.java
URL: 
http://svn.apache.org/viewvc/commons/proper/io/trunk/src/java/org/apache/commons/io/IOExceptionWithCause.java?rev=609286&r1=609285&r2=609286&view=diff
==============================================================================
--- 
commons/proper/io/trunk/src/java/org/apache/commons/io/IOExceptionWithCause.java
 (original)
+++ 
commons/proper/io/trunk/src/java/org/apache/commons/io/IOExceptionWithCause.java
 Sun Jan  6 02:01:26 2008
@@ -25,7 +25,7 @@
  * 
  * @author <a href="http://commons.apache.org/io/";>Apache Commons IO</a>
  * @version $Id$
- * @since 1.4
+ * @since Commons IO 1.4
  */
 public class IOExceptionWithCause extends IOException {
 

Modified: 
commons/proper/io/trunk/src/java/org/apache/commons/io/filefilter/FileFilterUtils.java
URL: 
http://svn.apache.org/viewvc/commons/proper/io/trunk/src/java/org/apache/commons/io/filefilter/FileFilterUtils.java?rev=609286&r1=609285&r2=609286&view=diff
==============================================================================
--- 
commons/proper/io/trunk/src/java/org/apache/commons/io/filefilter/FileFilterUtils.java
 (original)
+++ 
commons/proper/io/trunk/src/java/org/apache/commons/io/filefilter/FileFilterUtils.java
 Sun Jan  6 02:01:26 2008
@@ -294,7 +294,7 @@
      * 
      * @param filter  the filter to decorate, null means an unrestricted filter
      * @return the decorated filter, never null
-     * @since 1.1 (method existed but had bug in 1.0)
+     * @since Commons IO 1.1 (method existed but had bug in 1.0)
      */
     public static IOFileFilter makeCVSAware(IOFileFilter filter) {
         if (cvsFilter == null) {
@@ -315,7 +315,7 @@
      * 
      * @param filter  the filter to decorate, null means an unrestricted filter
      * @return the decorated filter, never null
-     * @since 1.1
+     * @since Commons IO 1.1
      */
     public static IOFileFilter makeSVNAware(IOFileFilter filter) {
         if (svnFilter == null) {
@@ -335,7 +335,7 @@
      * 
      * @param filter  the filter to decorate, null means an unrestricted filter
      * @return the decorated filter, never null
-     * @since 1.3
+     * @since Commons IO 1.3
      */
     public static IOFileFilter makeDirectoryOnly(IOFileFilter filter) {
         if (filter == null) {
@@ -349,7 +349,7 @@
      * 
      * @param filter  the filter to decorate, null means an unrestricted filter
      * @return the decorated filter, never null
-     * @since 1.3
+     * @since Commons IO 1.3
      */
     public static IOFileFilter makeFileOnly(IOFileFilter filter) {
         if (filter == null) {


Reply via email to