You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2012/03/30 17:13:12 UTC

svn commit: r1307462 - in /commons/proper/io/trunk/src/main/java/org/apache/commons/io: ./ comparator/ filefilter/ input/ monitor/ output/

Author: ggregory
Date: Fri Mar 30 15:13:11 2012
New Revision: 1307462

URL: http://svn.apache.org/viewvc?rev=1307462&view=rev
Log:
Replace "<code>false</code>" with "{@code false}"

Modified:
    commons/proper/io/trunk/src/main/java/org/apache/commons/io/FileCleaningTracker.java
    commons/proper/io/trunk/src/main/java/org/apache/commons/io/FileUtils.java
    commons/proper/io/trunk/src/main/java/org/apache/commons/io/FilenameUtils.java
    commons/proper/io/trunk/src/main/java/org/apache/commons/io/TaggedIOException.java
    commons/proper/io/trunk/src/main/java/org/apache/commons/io/comparator/SizeFileComparator.java
    commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/AndFileFilter.java
    commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/CanReadFileFilter.java
    commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/CanWriteFileFilter.java
    commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/ConditionalFileFilter.java
    commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/EmptyFileFilter.java
    commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/HiddenFileFilter.java
    commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/MagicNumberFileFilter.java
    commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/OrFileFilter.java
    commons/proper/io/trunk/src/main/java/org/apache/commons/io/input/BoundedInputStream.java
    commons/proper/io/trunk/src/main/java/org/apache/commons/io/input/NullInputStream.java
    commons/proper/io/trunk/src/main/java/org/apache/commons/io/input/NullReader.java
    commons/proper/io/trunk/src/main/java/org/apache/commons/io/input/TaggedInputStream.java
    commons/proper/io/trunk/src/main/java/org/apache/commons/io/monitor/FileEntry.java
    commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/DeferredFileOutputStream.java
    commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/TaggedOutputStream.java
    commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/ThresholdingOutputStream.java

Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/FileCleaningTracker.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/FileCleaningTracker.java?rev=1307462&r1=1307461&r2=1307462&view=diff
==============================================================================
--- commons/proper/io/trunk/src/main/java/org/apache/commons/io/FileCleaningTracker.java (original)
+++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/FileCleaningTracker.java Fri Mar 30 15:13:11 2012
@@ -272,7 +272,7 @@ public class FileCleaningTracker {
          * Deletes the file associated with this tracker instance.
          *
          * @return {@code true} if the file was deleted successfully;
-         *         <code>false</code> otherwise.
+         *         {@code false} otherwise.
          */
         public boolean delete() {
             return deleteStrategy.deleteQuietly(new File(path));

Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/FileUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/FileUtils.java?rev=1307462&r1=1307461&r2=1307462&view=diff
==============================================================================
--- commons/proper/io/trunk/src/main/java/org/apache/commons/io/FileUtils.java (original)
+++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/FileUtils.java Fri Mar 30 15:13:11 2012
@@ -1485,7 +1485,7 @@ public class FileUtils {
      *
      * @param file  file or directory to delete, can be {@code null}
      * @return {@code true} if the file or directory was deleted, otherwise
-     * <code>false</code>
+     * {@code false}
      *
      * @since 1.4
      */
@@ -2596,7 +2596,7 @@ public class FileUtils {
      * @param src the file to be moved
      * @param destDir the destination file
      * @param createDestDir If {@code true} create the destination directory,
-     * otherwise if <code>false</code> throw an IOException
+     * otherwise if {@code false} throw an IOException
      * @throws NullPointerException if source or destination is {@code null}
      * @throws FileExistsException if the directory exists in the destination directory
      * @throws IOException if source or destination is invalid
@@ -2673,7 +2673,7 @@ public class FileUtils {
      * @param srcFile the file to be moved
      * @param destDir the destination file
      * @param createDestDir If {@code true} create the destination directory,
-     * otherwise if <code>false</code> throw an IOException
+     * otherwise if {@code false} throw an IOException
      * @throws NullPointerException if source or destination is {@code null}
      * @throws FileExistsException if the destination file exists
      * @throws IOException if source or destination is invalid
@@ -2708,7 +2708,7 @@ public class FileUtils {
      * @param src the file or directory to be moved
      * @param destDir the destination directory 
      * @param createDestDir If {@code true} create the destination directory,
-     * otherwise if <code>false</code> throw an IOException
+     * otherwise if {@code false} throw an IOException
      * @throws NullPointerException if source or destination is {@code null}
      * @throws FileExistsException if the directory or file exists in the destination directory
      * @throws IOException if source or destination is invalid

Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/FilenameUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/FilenameUtils.java?rev=1307462&r1=1307461&r2=1307462&view=diff
==============================================================================
--- commons/proper/io/trunk/src/main/java/org/apache/commons/io/FilenameUtils.java (original)
+++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/FilenameUtils.java Fri Mar 30 15:13:11 2012
@@ -233,7 +233,7 @@ public class FilenameUtils {
      *
      * @param filename  the filename to normalize, null returns null
      * @param unixSeparator {@code true} if a unix separator should
-     * be used or <code>false</code> if a windows separator should be used.
+     * be used or {@code false} if a windows separator should be used.
      * @return the normalized filename, or null if invalid
      * @since 2.0
      */
@@ -327,7 +327,7 @@ public class FilenameUtils {
      *
      * @param filename  the filename to normalize, null returns null
      * @param unixSeparator {@code true} if a unix separator should
-     * be used or <code>false</code> if a windows separtor should be used.
+     * be used or {@code false} if a windows separtor should be used.
      * @return the normalized filename, or null if invalid
      * @since 2.0
      */

Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/TaggedIOException.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/TaggedIOException.java?rev=1307462&r1=1307461&r2=1307462&view=diff
==============================================================================
--- commons/proper/io/trunk/src/main/java/org/apache/commons/io/TaggedIOException.java (original)
+++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/TaggedIOException.java Fri Mar 30 15:13:11 2012
@@ -59,7 +59,7 @@ public class TaggedIOException extends I
      * @param throwable The Throwable object to check
      * @param tag tag object
      * @return {@code true} if the throwable has the specified tag,
-     * otherwise <code>false</code>
+     * otherwise {@code false}
      */
     public static boolean isTaggedWith(Throwable throwable, Object tag) {
         return tag != null

Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/comparator/SizeFileComparator.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/comparator/SizeFileComparator.java?rev=1307462&r1=1307461&r2=1307462&view=diff
==============================================================================
--- commons/proper/io/trunk/src/main/java/org/apache/commons/io/comparator/SizeFileComparator.java (original)
+++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/comparator/SizeFileComparator.java Fri Mar 30 15:13:11 2012
@@ -87,7 +87,7 @@ public class SizeFileComparator extends 
      * directories is calculated using  {@link FileUtils#sizeOfDirectory(File)}.
      *
      * @param sumDirectoryContents {@code true} if the sum of the directoryies contents
-     *  should be calculated, otherwise <code>false</code> if directories should be treated
+     *  should be calculated, otherwise {@code false} if directories should be treated
      *  as size zero (see {@link FileUtils#sizeOfDirectory(File)}).
      */
     public SizeFileComparator(boolean sumDirectoryContents) {

Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/AndFileFilter.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/AndFileFilter.java?rev=1307462&r1=1307461&r2=1307462&view=diff
==============================================================================
--- commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/AndFileFilter.java (original)
+++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/AndFileFilter.java Fri Mar 30 15:13:11 2012
@@ -25,9 +25,9 @@ import java.util.List;
 /**
  * A {@link java.io.FileFilter} providing conditional AND logic across a list of
  * file filters. This filter returns {@code true} if all filters in the
- * list return {@code true}. Otherwise, it returns <code>false</code>.
+ * list return {@code true}. Otherwise, it returns {@code false}.
  * Checking of the file filter list stops when the first filter returns
- * <code>false</code>.
+ * {@code false}.
  *
  * @since 1.0
  * @version $Id$

Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/CanReadFileFilter.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/CanReadFileFilter.java?rev=1307462&r1=1307461&r2=1307462&view=diff
==============================================================================
--- commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/CanReadFileFilter.java (original)
+++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/CanReadFileFilter.java Fri Mar 30 15:13:11 2012
@@ -83,7 +83,7 @@ public class CanReadFileFilter extends A
      * 
      * @param file  the File to check.
      * @return {@code true} if the file can be
-     *  read, otherwise <code>false</code>.
+     *  read, otherwise {@code false}.
      */
     @Override
     public boolean accept(File file) {

Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/CanWriteFileFilter.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/CanWriteFileFilter.java?rev=1307462&r1=1307461&r2=1307462&view=diff
==============================================================================
--- commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/CanWriteFileFilter.java (original)
+++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/CanWriteFileFilter.java Fri Mar 30 15:13:11 2012
@@ -71,7 +71,7 @@ public class CanWriteFileFilter extends 
      * 
      * @param file  the File to check
      * @return {@code true} if the file can be
-     *  written to, otherwise <code>false</code>.
+     *  written to, otherwise {@code false}.
      */
     @Override
     public boolean accept(File file) {

Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/ConditionalFileFilter.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/ConditionalFileFilter.java?rev=1307462&r1=1307461&r2=1307462&view=diff
==============================================================================
--- commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/ConditionalFileFilter.java (original)
+++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/ConditionalFileFilter.java Fri Mar 30 15:13:11 2012
@@ -48,7 +48,7 @@ public interface ConditionalFileFilter {
      *
      * @param ioFileFilter filter to be removed
      * @return {@code true} if the filter was found in the list,
-     * <code>false</code> otherwise
+     * {@code false} otherwise
      * @since 1.1
      */
     boolean removeFileFilter(IOFileFilter ioFileFilter);

Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/EmptyFileFilter.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/EmptyFileFilter.java?rev=1307462&r1=1307461&r2=1307462&view=diff
==============================================================================
--- commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/EmptyFileFilter.java (original)
+++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/EmptyFileFilter.java Fri Mar 30 15:13:11 2012
@@ -70,7 +70,7 @@ public class EmptyFileFilter extends Abs
      * 
      * @param file  the file or directory to check
      * @return {@code true} if the file or directory
-     *  is <i>empty</i>, otherwise <code>false</code>.
+     *  is <i>empty</i>, otherwise {@code false}.
      */
     @Override
     public boolean accept(File file) {

Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/HiddenFileFilter.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/HiddenFileFilter.java?rev=1307462&r1=1307461&r2=1307462&view=diff
==============================================================================
--- commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/HiddenFileFilter.java (original)
+++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/HiddenFileFilter.java Fri Mar 30 15:13:11 2012
@@ -67,7 +67,7 @@ public class HiddenFileFilter extends Ab
      * 
      * @param file  the File to check
      * @return {@code true} if the file is
-     *  <i>hidden</i>, otherwise <code>false</code>.
+     *  <i>hidden</i>, otherwise {@code false}.
      */
     @Override
     public boolean accept(File file) {

Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/MagicNumberFileFilter.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/MagicNumberFileFilter.java?rev=1307462&r1=1307461&r2=1307462&view=diff
==============================================================================
--- commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/MagicNumberFileFilter.java (original)
+++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/MagicNumberFileFilter.java Fri Mar 30 15:13:11 2012
@@ -232,7 +232,7 @@ public class MagicNumberFileFilter exten
      * @param file the file to accept or reject.
      * 
      * @return {@code true} if the file contains the filter's magic number 
-     *         at the specified offset, <code>false</code> otherwise.
+     *         at the specified offset, {@code false} otherwise.
      */
     @Override
     public boolean accept(File file) {

Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/OrFileFilter.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/OrFileFilter.java?rev=1307462&r1=1307461&r2=1307462&view=diff
==============================================================================
--- commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/OrFileFilter.java (original)
+++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/filefilter/OrFileFilter.java Fri Mar 30 15:13:11 2012
@@ -25,7 +25,7 @@ import java.util.List;
 /**
  * A {@link java.io.FileFilter} providing conditional OR logic across a list of
  * file filters. This filter returns {@code true} if any filters in the
- * list return {@code true}. Otherwise, it returns <code>false</code>.
+ * list return {@code true}. Otherwise, it returns {@code false}.
  * Checking of the file filter list stops when the first filter returns
  * {@code true}.
  *

Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/input/BoundedInputStream.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/input/BoundedInputStream.java?rev=1307462&r1=1307461&r2=1307462&view=diff
==============================================================================
--- commons/proper/io/trunk/src/main/java/org/apache/commons/io/input/BoundedInputStream.java (original)
+++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/input/BoundedInputStream.java Fri Mar 30 15:13:11 2012
@@ -209,7 +209,7 @@ public class BoundedInputStream extends 
      *
      * @return {@code true} if calling {@link #close()}
      * propagates to the <code>close()</code> method of the
-     * underlying stream or <code>false</code> if it does not.
+     * underlying stream or {@code false} if it does not.
      */
     public boolean isPropagateClose() {
         return propagateClose;
@@ -222,7 +222,7 @@ public class BoundedInputStream extends 
      * @param propagateClose {@code true} if calling
      * {@link #close()} propagates to the <code>close()</code>
      * method of the underlying stream or
-     * <code>false</code> if it does not.
+     * {@code false} if it does not.
      */
     public void setPropagateClose(boolean propagateClose) {
         this.propagateClose = propagateClose;

Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/input/NullInputStream.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/input/NullInputStream.java?rev=1307462&r1=1307461&r2=1307462&view=diff
==============================================================================
--- commons/proper/io/trunk/src/main/java/org/apache/commons/io/input/NullInputStream.java (original)
+++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/input/NullInputStream.java Fri Mar 30 15:13:11 2012
@@ -176,7 +176,7 @@ public class NullInputStream extends Inp
      *
      * @return Either The byte value returned by <code>processByte()</code>
      * or <code>-1</code> if the end of file has been reached and
-     * <code>throwEofException</code> is set to <code>false</code>.
+     * <code>throwEofException</code> is set to {@code false}.
      * @throws EOFException if the end of file is reached and
      * <code>throwEofException</code> is set to {@code true}.
      * @throws IOException if trying to read past the end of file.
@@ -199,7 +199,7 @@ public class NullInputStream extends Inp
      * @param bytes The byte array to read into
      * @return The number of bytes read or <code>-1</code>
      * if the end of file has been reached and
-     * <code>throwEofException</code> is set to <code>false</code>.
+     * <code>throwEofException</code> is set to {@code false}.
      * @throws EOFException if the end of file is reached and
      * <code>throwEofException</code> is set to {@code true}.
      * @throws IOException if trying to read past the end of file.
@@ -217,7 +217,7 @@ public class NullInputStream extends Inp
      * @param length The number of bytes to read.
      * @return The number of bytes read or <code>-1</code>
      * if the end of file has been reached and
-     * <code>throwEofException</code> is set to <code>false</code>.
+     * <code>throwEofException</code> is set to {@code false}.
      * @throws EOFException if the end of file is reached and
      * <code>throwEofException</code> is set to {@code true}.
      * @throws IOException if trying to read past the end of file.
@@ -271,7 +271,7 @@ public class NullInputStream extends Inp
      * @param numberOfBytes The number of bytes to skip.
      * @return The number of bytes skipped or <code>-1</code>
      * if the end of file has been reached and
-     * <code>throwEofException</code> is set to <code>false</code>.
+     * <code>throwEofException</code> is set to {@code false}.
      * @throws EOFException if the end of file is reached and
      * <code>throwEofException</code> is set to {@code true}.
      * @throws IOException if trying to read past the end of file.
@@ -323,7 +323,7 @@ public class NullInputStream extends Inp
      * Handle End of File.
      *
      * @return <code>-1</code> if <code>throwEofException</code> is
-     * set to <code>false</code>
+     * set to {@code false}
      * @throws EOFException if <code>throwEofException</code> is set
      * to {@code true}.
      */

Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/input/NullReader.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/input/NullReader.java?rev=1307462&r1=1307461&r2=1307462&view=diff
==============================================================================
--- commons/proper/io/trunk/src/main/java/org/apache/commons/io/input/NullReader.java (original)
+++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/input/NullReader.java Fri Mar 30 15:13:11 2012
@@ -159,7 +159,7 @@ public class NullReader extends Reader {
      *
      * @return Either The character value returned by <code>processChar()</code>
      * or <code>-1</code> if the end of file has been reached and
-     * <code>throwEofException</code> is set to <code>false</code>.
+     * <code>throwEofException</code> is set to {@code false}.
      * @throws EOFException if the end of file is reached and
      * <code>throwEofException</code> is set to {@code true}.
      * @throws IOException if trying to read past the end of file.
@@ -182,7 +182,7 @@ public class NullReader extends Reader {
      * @param chars The character array to read into
      * @return The number of characters read or <code>-1</code>
      * if the end of file has been reached and
-     * <code>throwEofException</code> is set to <code>false</code>.
+     * <code>throwEofException</code> is set to {@code false}.
      * @throws EOFException if the end of file is reached and
      * <code>throwEofException</code> is set to {@code true}.
      * @throws IOException if trying to read past the end of file.
@@ -200,7 +200,7 @@ public class NullReader extends Reader {
      * @param length The number of characters to read.
      * @return The number of characters read or <code>-1</code>
      * if the end of file has been reached and
-     * <code>throwEofException</code> is set to <code>false</code>.
+     * <code>throwEofException</code> is set to {@code false}.
      * @throws EOFException if the end of file is reached and
      * <code>throwEofException</code> is set to {@code true}.
      * @throws IOException if trying to read past the end of file.
@@ -254,7 +254,7 @@ public class NullReader extends Reader {
      * @param numberOfChars The number of characters to skip.
      * @return The number of characters skipped or <code>-1</code>
      * if the end of file has been reached and
-     * <code>throwEofException</code> is set to <code>false</code>.
+     * <code>throwEofException</code> is set to {@code false}.
      * @throws EOFException if the end of file is reached and
      * <code>throwEofException</code> is set to {@code true}.
      * @throws IOException if trying to read past the end of file.
@@ -306,7 +306,7 @@ public class NullReader extends Reader {
      * Handle End of File.
      *
      * @return <code>-1</code> if <code>throwEofException</code> is
-     * set to <code>false</code>
+     * set to {@code false}
      * @throws EOFException if <code>throwEofException</code> is set
      * to {@code true}.
      */

Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/input/TaggedInputStream.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/input/TaggedInputStream.java?rev=1307462&r1=1307461&r2=1307462&view=diff
==============================================================================
--- commons/proper/io/trunk/src/main/java/org/apache/commons/io/input/TaggedInputStream.java (original)
+++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/input/TaggedInputStream.java Fri Mar 30 15:13:11 2012
@@ -82,7 +82,7 @@ public class TaggedInputStream extends P
      *
      * @param exception an exception
      * @return {@code true} if the exception was thrown by this stream,
-     *         <code>false</code> otherwise
+     *         {@code false} otherwise
      */
     public boolean isCauseOf(Throwable exception) {
         return TaggedIOException.isTaggedWith(exception, tag);

Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/monitor/FileEntry.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/monitor/FileEntry.java?rev=1307462&r1=1307461&r2=1307462&view=diff
==============================================================================
--- commons/proper/io/trunk/src/main/java/org/apache/commons/io/monitor/FileEntry.java (original)
+++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/monitor/FileEntry.java Fri Mar 30 15:13:11 2012
@@ -88,7 +88,7 @@ public class FileEntry implements Serial
      * and <code>length</code> properties are compared for changes
      *
      * @param file the file instance to compare to
-     * @return {@code true} if the file has changed, otherwise <code>false</code>
+     * @return {@code true} if the file has changed, otherwise {@code false}
      */
     public boolean refresh(File file) {
 

Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/DeferredFileOutputStream.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/DeferredFileOutputStream.java?rev=1307462&r1=1307461&r2=1307462&view=diff
==============================================================================
--- commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/DeferredFileOutputStream.java (original)
+++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/DeferredFileOutputStream.java Fri Mar 30 15:13:11 2012
@@ -190,7 +190,7 @@ public class DeferredFileOutputStream
      * retained in memory.
      *
      * @return {@code true} if the data is available in memory;
-     *         <code>false</code> otherwise.
+     *         {@code false} otherwise.
      */
     public boolean isInMemory()
     {

Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/TaggedOutputStream.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/TaggedOutputStream.java?rev=1307462&r1=1307461&r2=1307462&view=diff
==============================================================================
--- commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/TaggedOutputStream.java (original)
+++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/TaggedOutputStream.java Fri Mar 30 15:13:11 2012
@@ -82,7 +82,7 @@ public class TaggedOutputStream extends 
      *
      * @param exception an exception
      * @return {@code true} if the exception was thrown by this stream,
-     *         <code>false</code> otherwise
+     *         {@code false} otherwise
      */
     public boolean isCauseOf(Exception exception) {
         return TaggedIOException.isTaggedWith(exception, tag);

Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/ThresholdingOutputStream.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/ThresholdingOutputStream.java?rev=1307462&r1=1307461&r2=1307462&view=diff
==============================================================================
--- commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/ThresholdingOutputStream.java (original)
+++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/ThresholdingOutputStream.java Fri Mar 30 15:13:11 2012
@@ -195,7 +195,7 @@ public abstract class ThresholdingOutput
      * this output stream.
      *
      * @return {@code true} if the threshold has been reached;
-     *         <code>false</code> otherwise.
+     *         {@code false} otherwise.
      */
     public boolean isThresholdExceeded()
     {