Skip to content

Commit a653a44

Browse files
committed
Javadoc fixes on Java 8.
1 parent 9e405ca commit a653a44

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/org/apache/commons/io/FilenameUtils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -726,7 +726,7 @@ public static int indexOfLastSeparator(final String filename) {
726726
* @param filename
727727
* the filename to find the last extension separator in, null returns -1
728728
* @return the index of the last extension separator character, or -1 if there is no such character
729-
* @throws IllegalArgumentException <b>Windows only:/b> The filename parameter is, in fact,
729+
* @throws IllegalArgumentException <b>Windows only:</b> The filename parameter is, in fact,
730730
* the identifier of an Alternate Data Stream, for example "foo.exe:bar.txt".
731731
*/
732732
public static int indexOfExtension(final String filename) throws IllegalArgumentException {
@@ -1054,7 +1054,7 @@ public static String getBaseName(final String filename) {
10541054
* @param filename the filename to retrieve the extension of.
10551055
* @return the extension of the file or an empty string if none exists or {@code null}
10561056
* if the filename is {@code null}.
1057-
* @throws IllegalArgumentException <b>Windows only:/b> The filename parameter is, in fact,
1057+
* @throws IllegalArgumentException <b>Windows only:</b> The filename parameter is, in fact,
10581058
* the identifier of an Alternate Data Stream, for example "foo.exe:bar.txt".
10591059
*/
10601060
public static String getExtension(final String filename) throws IllegalArgumentException {

0 commit comments

Comments
 (0)