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:57:17 UTC

[commons-io] branch master updated: Change part of "Fix "unexpected heading" Javadoc errors on Java 13+." so that it also works version before 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 1de4a96  Change part of "Fix "unexpected heading" Javadoc errors on Java 13+." so that it also works version before Java 13.
1de4a96 is described below

commit 1de4a966ce72393f86b409725371da074697ab8a
Author: pascalschumacher <pa...@gmx.net>
AuthorDate: Fri Aug 2 16:57:09 2019 +0200

    Change part of "Fix "unexpected heading" Javadoc errors on Java 13+." so that it also works version before Java 13.
---
 src/main/java/org/apache/commons/io/FileUtils.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/apache/commons/io/FileUtils.java b/src/main/java/org/apache/commons/io/FileUtils.java
index cc804ca..6e175e6 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>
-     * <h4>Example: Copy directories only</h4>
+     * <b>Example: Copy directories only</b>
      * <pre>
      *  // only copy the directory structure
      *  FileUtils.copyDirectory(srcDir, destDir, DirectoryFileFilter.DIRECTORY);
      *  </pre>
      *
-     * <h4>Example: Copy directories and txt files</h4>
+     * <b>Example: Copy directories and txt files</b>
      * <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>
-     * <h4>Example: Copy directories only</h4>
+     * <b>Example: Copy directories only</b>
      * <pre>
      *  // only copy the directory structure
      *  FileUtils.copyDirectory(srcDir, destDir, DirectoryFileFilter.DIRECTORY, false);
      *  </pre>
      *
-     * <h4>Example: Copy directories and txt files</h4>
+     * <b>Example: Copy directories and txt files</b>
      * <pre>
      *  // Create a filter for ".txt" files
      *  IOFileFilter txtSuffixFilter = FileFilterUtils.suffixFileFilter(".txt");