Style fix - Unify @since tag format

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/io/trunk@609286 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/java/org/apache/commons/io/IOExceptionWithCause.java b/src/java/org/apache/commons/io/IOExceptionWithCause.java
index 5ddd521..a15815a 100644
--- a/src/java/org/apache/commons/io/IOExceptionWithCause.java
+++ b/src/java/org/apache/commons/io/IOExceptionWithCause.java
@@ -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 {

 

diff --git a/src/java/org/apache/commons/io/filefilter/FileFilterUtils.java b/src/java/org/apache/commons/io/filefilter/FileFilterUtils.java
index 4a0cb0e..6b5a88d 100644
--- a/src/java/org/apache/commons/io/filefilter/FileFilterUtils.java
+++ b/src/java/org/apache/commons/io/filefilter/FileFilterUtils.java
@@ -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) {