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 2014/01/31 20:57:23 UTC

svn commit: r1563231 - /commons/proper/io/trunk/src/main/java/org/apache/commons/io/monitor/FileEntry.java

Author: ggregory
Date: Fri Jan 31 19:57:23 2014
New Revision: 1563231

URL: http://svn.apache.org/r1563231
Log:
Javadoc clean up.

Modified:
    commons/proper/io/trunk/src/main/java/org/apache/commons/io/monitor/FileEntry.java

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=1563231&r1=1563230&r2=1563231&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 Jan 31 19:57:23 2014
@@ -20,8 +20,7 @@ import java.io.File;
 import java.io.Serializable;
 
 /**
- * {@link FileEntry} represents the state of a file or directory, capturing
- * the following {@link File} attributes at a point in time.
+ * The state of a file or directory, capturing the following {@link File} attributes at a point in time.
  * <ul>
  *   <li>File Name (see {@link File#getName()})</li>
  *   <li>Exists - whether the file exists or not (see {@link File#exists()})</li>
@@ -30,7 +29,7 @@ import java.io.Serializable;
  *   <li>Length (see {@link File#length()}) - directories treated as zero</li>
  *   <li>Children - contents of a directory (see {@link File#listFiles(java.io.FileFilter)})</li>
  * </ul>
- * <p>
+ * 
  * <h3>Custom Implementations</h3>
  * If the state of additional {@link File} attributes is required then create a custom
  * {@link FileEntry} with properties for those attributes. Override the