You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by pa...@apache.org on 2019/08/02 14:42:48 UTC

[commons-io] branch master updated: Fix "unexpected heading" Javadoc errors on Java 13+.

This is an automated email from the ASF dual-hosted git repository.

pascalschumacher pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-io.git


The following commit(s) were added to refs/heads/master by this push:
     new 27fbd9e  Fix "unexpected heading" Javadoc errors on Java 13+.
27fbd9e is described below

commit 27fbd9e3a383ea3899714e743c34742607b0b73a
Author: Pascal Schumacher <pa...@gmx.net>
AuthorDate: Fri Aug 2 16:40:42 2019 +0200

    Fix "unexpected heading" Javadoc errors on Java 13+.
---
 src/main/java/org/apache/commons/io/DirectoryWalker.java      | 10 +++++-----
 src/main/java/org/apache/commons/io/FileUtils.java            |  8 ++++----
 src/main/java/org/apache/commons/io/comparator/package.html   |  6 +++---
 src/main/java/org/apache/commons/io/input/BOMInputStream.java |  6 +++---
 src/main/java/org/apache/commons/io/monitor/FileEntry.java    |  2 +-
 5 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/src/main/java/org/apache/commons/io/DirectoryWalker.java b/src/main/java/org/apache/commons/io/DirectoryWalker.java
index b04a204..24f2885 100644
--- a/src/main/java/org/apache/commons/io/DirectoryWalker.java
+++ b/src/main/java/org/apache/commons/io/DirectoryWalker.java
@@ -46,7 +46,7 @@ import org.apache.commons.io.filefilter.TrueFileFilter;
  *          behaviour.</li>
  *   </ul>
  *
- * <h3 id="example">1. Example Implementation</h3>
+ * <h2 id="example">1. Example Implementation</h2>
  *
  * There are many possible extensions, for example, to delete all
  * files and '.svn' directories, and return a list of deleted files:
@@ -82,7 +82,7 @@ import org.apache.commons.io.filefilter.TrueFileFilter;
  *  }
  * </pre>
  *
- * <h3 id="filter">2. Filter Example</h3>
+ * <h2 id="filter">2. Filter Example</h2>
  *
  * <p>
  * Choosing which directories and files to process can be a key aspect
@@ -157,7 +157,7 @@ import org.apache.commons.io.filefilter.TrueFileFilter;
  * option for filtering.
  * </p>
  *
- * <h3 id="cancel">3. Cancellation</h3>
+ * <h2 id="cancel">3. Cancellation</h2>
  *
  * <p>
  * The DirectoryWalker contains some of the logic required for cancel processing.
@@ -195,7 +195,7 @@ import org.apache.commons.io.filefilter.TrueFileFilter;
  * scenarios.
  * </p>
  *
- * <h4 id="external">3.1 External / Multi-threaded</h4>
+ * <h3 id="external">3.1 External / Multi-threaded</h3>
  *
  * <p>
  * This example provides a public <code>cancel()</code> method that can be
@@ -228,7 +228,7 @@ import org.apache.commons.io.filefilter.TrueFileFilter;
  *  }
  * </pre>
  *
- * <h4 id="internal">3.2 Internal</h4>
+ * <h3 id="internal">3.2 Internal</h3>
  *
  * <p>
  * This shows an example of how internal cancellation processing could be implemented.
diff --git a/src/main/java/org/apache/commons/io/FileUtils.java b/src/main/java/org/apache/commons/io/FileUtils.java
index efc1a64..cc804ca 100644
--- a/src/main/java/org/apache/commons/io/FileUtils.java
+++ b/src/main/java/org/apache/commons/io/FileUtils.java
@@ -1309,13 +1309,13 @@ public class FileUtils {
      * it is not guaranteed that those operations will succeed.
      * If the modification operation fails, no indication is provided.
      * </p>
-     * <h3>Example: Copy directories only</h3>
+     * <h4>Example: Copy directories only</h4>
      * <pre>
      *  // only copy the directory structure
      *  FileUtils.copyDirectory(srcDir, destDir, DirectoryFileFilter.DIRECTORY);
      *  </pre>
      *
-     * <h3>Example: Copy directories and txt files</h3>
+     * <h4>Example: Copy directories and txt files</h4>
      * <pre>
      *  // Create a filter for ".txt" files
      *  IOFileFilter txtSuffixFilter = FileFilterUtils.suffixFileFilter(".txt");
@@ -1361,13 +1361,13 @@ public class FileUtils {
      * not guaranteed that those operations will succeed.
      * If the modification operation fails, no indication is provided.
      * </p>
-     * <h3>Example: Copy directories only</h3>
+     * <h4>Example: Copy directories only</h4>
      * <pre>
      *  // only copy the directory structure
      *  FileUtils.copyDirectory(srcDir, destDir, DirectoryFileFilter.DIRECTORY, false);
      *  </pre>
      *
-     * <h3>Example: Copy directories and txt files</h3>
+     * <h4>Example: Copy directories and txt files</h4>
      * <pre>
      *  // Create a filter for ".txt" files
      *  IOFileFilter txtSuffixFilter = FileFilterUtils.suffixFileFilter(".txt");
diff --git a/src/main/java/org/apache/commons/io/comparator/package.html b/src/main/java/org/apache/commons/io/comparator/package.html
index fa66bb0..bd2d239 100644
--- a/src/main/java/org/apache/commons/io/comparator/package.html
+++ b/src/main/java/org/apache/commons/io/comparator/package.html
@@ -20,7 +20,7 @@ limitations under the License.
 <p>This package provides various {@link java.util.Comparator} implementations
 for {@link java.io.File}s.
 </p>
-<h3>Sorting</h3>
+<h2>Sorting</h2>
 <p>
   All the compartors include <i>convenience</i> utility <code>sort(File...)</code> and
   <code>sort(List)</code> methods.
@@ -39,7 +39,7 @@ for {@link java.io.File}s.
       File[] files = NameFileComparator.NAME_COMPARATOR.sort(dir.listFiles());
 </pre>
 
-<h3>Composite Comparator</h3>
+<h2>Composite Comparator</h2>
 <p>
   The <a href="CompositeFileComparator.html">CompositeFileComparator</a> can be used
   to compare (and sort lists or arrays of files) by combining a number other comparators.
@@ -57,7 +57,7 @@ for {@link java.io.File}s.
       comparator.sort(files);
 </pre>
 
-<h3>Singleton Instances (thread-safe)</h3>
+<h2>Singleton Instances (thread-safe)</h2>
 <p>
  The {@link java.util.Comparator} implementations have some <i>convenience</i>
  singleton(<i>thread-safe</i>) instances ready to use:
diff --git a/src/main/java/org/apache/commons/io/input/BOMInputStream.java b/src/main/java/org/apache/commons/io/input/BOMInputStream.java
index 3ec205b..81b7844 100644
--- a/src/main/java/org/apache/commons/io/input/BOMInputStream.java
+++ b/src/main/java/org/apache/commons/io/input/BOMInputStream.java
@@ -43,7 +43,7 @@ import org.apache.commons.io.ByteOrderMark;
  * </ul>
  *
  *
- * <h3>Example 1 - Detect and exclude a UTF-8 BOM</h3>
+ * <h2>Example 1 - Detect and exclude a UTF-8 BOM</h2>
  *
  * <pre>
  * BOMInputStream bomIn = new BOMInputStream(in);
@@ -52,7 +52,7 @@ import org.apache.commons.io.ByteOrderMark;
  * }
  * </pre>
  *
- * <h3>Example 2 - Detect a UTF-8 BOM (but don't exclude it)</h3>
+ * <h2>Example 2 - Detect a UTF-8 BOM (but don't exclude it)</h2>
  *
  * <pre>
  * boolean include = true;
@@ -62,7 +62,7 @@ import org.apache.commons.io.ByteOrderMark;
  * }
  * </pre>
  *
- * <h3>Example 3 - Detect Multiple BOMs</h3>
+ * <h2>Example 3 - Detect Multiple BOMs</h2>
  *
  * <pre>
  * BOMInputStream bomIn = new BOMInputStream(in,
diff --git a/src/main/java/org/apache/commons/io/monitor/FileEntry.java b/src/main/java/org/apache/commons/io/monitor/FileEntry.java
index 32a7720..66c1cc5 100644
--- a/src/main/java/org/apache/commons/io/monitor/FileEntry.java
+++ b/src/main/java/org/apache/commons/io/monitor/FileEntry.java
@@ -30,7 +30,7 @@ import java.io.Serializable;
  *   <li>Children - contents of a directory (see {@link File#listFiles(java.io.FileFilter)})</li>
  * </ul>
  *
- * <h3>Custom Implementations</h3>
+ * <h2>Custom Implementations</h2>
  * <p>
  * If the state of additional {@link File} attributes is required then create a custom
  * {@link FileEntry} with properties for those attributes. Override the