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 2018/03/06 16:43:42 UTC

commons-io git commit: Javadoc fixes on Java 8.

Repository: commons-io
Updated Branches:
  refs/heads/master 9e405ca54 -> a653a4487


Javadoc fixes on Java 8.

Project: http://git-wip-us.apache.org/repos/asf/commons-io/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-io/commit/a653a448
Tree: http://git-wip-us.apache.org/repos/asf/commons-io/tree/a653a448
Diff: http://git-wip-us.apache.org/repos/asf/commons-io/diff/a653a448

Branch: refs/heads/master
Commit: a653a4487774f57a7aff2c9dc1fe40b9b221cb6b
Parents: 9e405ca
Author: Gary Gregory <ga...@gmail.com>
Authored: Tue Mar 6 09:43:38 2018 -0700
Committer: Gary Gregory <ga...@gmail.com>
Committed: Tue Mar 6 09:43:38 2018 -0700

----------------------------------------------------------------------
 src/main/java/org/apache/commons/io/FilenameUtils.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-io/blob/a653a448/src/main/java/org/apache/commons/io/FilenameUtils.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/io/FilenameUtils.java b/src/main/java/org/apache/commons/io/FilenameUtils.java
index fec3603..fbcfc27 100644
--- a/src/main/java/org/apache/commons/io/FilenameUtils.java
+++ b/src/main/java/org/apache/commons/io/FilenameUtils.java
@@ -726,7 +726,7 @@ public class FilenameUtils {
      * @param filename
      *            the filename to find the last extension separator in, null returns -1
      * @return the index of the last extension separator character, or -1 if there is no such character
-     * @throws IllegalArgumentException <b>Windows only:/b> The filename parameter is, in fact,
+     * @throws IllegalArgumentException <b>Windows only:</b> The filename parameter is, in fact,
      * the identifier of an Alternate Data Stream, for example "foo.exe:bar.txt".
      */
     public static int indexOfExtension(final String filename) throws IllegalArgumentException {
@@ -1054,7 +1054,7 @@ public class FilenameUtils {
      * @param filename the filename to retrieve the extension of.
      * @return the extension of the file or an empty string if none exists or {@code null}
      * if the filename is {@code null}.
-     * @throws IllegalArgumentException <b>Windows only:/b> The filename parameter is, in fact,
+     * @throws IllegalArgumentException <b>Windows only:</b> The filename parameter is, in fact,
      * the identifier of an Alternate Data Stream, for example "foo.exe:bar.txt".
      */
     public static String getExtension(final String filename) throws IllegalArgumentException {