Skip to content

Commit d6c044b

Browse files
author
Stephen Colebourne
committed
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
1 parent eafc20d commit d6c044b

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/java/org/apache/commons/io/IOExceptionWithCause.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
*
2626
* @author <a href="http://commons.apache.org/io/">Apache Commons IO</a>
2727
* @version $Id$
28-
* @since 1.4
28+
* @since Commons IO 1.4
2929
*/
3030
public class IOExceptionWithCause extends IOException {
3131

src/java/org/apache/commons/io/filefilter/FileFilterUtils.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ public static IOFileFilter sizeRangeFileFilter(long minSizeInclusive, long maxSi
294294
*
295295
* @param filter the filter to decorate, null means an unrestricted filter
296296
* @return the decorated filter, never null
297-
* @since 1.1 (method existed but had bug in 1.0)
297+
* @since Commons IO 1.1 (method existed but had bug in 1.0)
298298
*/
299299
public static IOFileFilter makeCVSAware(IOFileFilter filter) {
300300
if (cvsFilter == null) {
@@ -315,7 +315,7 @@ public static IOFileFilter makeCVSAware(IOFileFilter filter) {
315315
*
316316
* @param filter the filter to decorate, null means an unrestricted filter
317317
* @return the decorated filter, never null
318-
* @since 1.1
318+
* @since Commons IO 1.1
319319
*/
320320
public static IOFileFilter makeSVNAware(IOFileFilter filter) {
321321
if (svnFilter == null) {
@@ -335,7 +335,7 @@ public static IOFileFilter makeSVNAware(IOFileFilter filter) {
335335
*
336336
* @param filter the filter to decorate, null means an unrestricted filter
337337
* @return the decorated filter, never null
338-
* @since 1.3
338+
* @since Commons IO 1.3
339339
*/
340340
public static IOFileFilter makeDirectoryOnly(IOFileFilter filter) {
341341
if (filter == null) {
@@ -349,7 +349,7 @@ public static IOFileFilter makeDirectoryOnly(IOFileFilter filter) {
349349
*
350350
* @param filter the filter to decorate, null means an unrestricted filter
351351
* @return the decorated filter, never null
352-
* @since 1.3
352+
* @since Commons IO 1.3
353353
*/
354354
public static IOFileFilter makeFileOnly(IOFileFilter filter) {
355355
if (filter == null) {

0 commit comments

Comments
 (0)