3737 * This class aims to help avoid those problems.
3838 * </p>
3939 * <p>
40- * <b >NOTE</b >: You may be able to avoid using this class entirely simply by
40+ * <strong >NOTE</strong >: You may be able to avoid using this class entirely simply by
4141 * using JDK {@link File File} objects and the two argument constructor
4242 * {@link File#File(java.io.File, String) File(File,String)}.
4343 * </p>
@@ -634,7 +634,7 @@ public static String getBaseName(final String fileName) {
634634 * exception of a possible {@link IllegalArgumentException} on Windows (see below).
635635 * </p>
636636 * <p>
637- * <b >Note:</b > This method used to have a hidden problem for names like "foo.exe:bar.txt".
637+ * <strong >Note:</strong > This method used to have a hidden problem for names like "foo.exe:bar.txt".
638638 * In this case, the name wouldn't be the name of a file, but the identifier of an
639639 * alternate data stream (bar.txt) on the file foo.exe. The method used to return
640640 * ".txt" here, which would be misleading. Commons IO 2.7 and later throw
@@ -644,7 +644,7 @@ public static String getBaseName(final String fileName) {
644644 * @param fileName the file name to retrieve the extension of.
645645 * @return the extension of the file or an empty string if none exists or {@code null}
646646 * if the file name is {@code null}.
647- * @throws IllegalArgumentException <b >Windows only:</b > the file name parameter is, in fact,
647+ * @throws IllegalArgumentException <strong >Windows only:</strong > the file name parameter is, in fact,
648648 * the identifier of an Alternate Data Stream, for example "foo.exe:bar.txt".
649649 */
650650 public static String getExtension (final String fileName ) throws IllegalArgumentException {
@@ -972,7 +972,7 @@ public static int getPrefixLength(final String fileName) {
972972 * The output will be the same irrespective of the machine that the code is running on, with the
973973 * exception of a possible {@link IllegalArgumentException} on Windows (see below).
974974 * </p>
975- * <b >Note:</b > This method used to have a hidden problem for names like "foo.exe:bar.txt".
975+ * <strong >Note:</strong > This method used to have a hidden problem for names like "foo.exe:bar.txt".
976976 * In this case, the name wouldn't be the name of a file, but the identifier of an
977977 * alternate data stream (bar.txt) on the file foo.exe. The method used to return
978978 * ".txt" here, which would be misleading. Commons IO 2.7, and later versions, are throwing
@@ -981,7 +981,7 @@ public static int getPrefixLength(final String fileName) {
981981 * @param fileName
982982 * the file name to find the last extension separator in, null returns -1
983983 * @return the index of the last extension separator character, or -1 if there is no such character
984- * @throws IllegalArgumentException <b >Windows only:</b > the file name parameter is, in fact,
984+ * @throws IllegalArgumentException <strong >Windows only:</strong > the file name parameter is, in fact,
985985 * the identifier of an Alternate Data Stream, for example "foo.exe:bar.txt".
986986 */
987987 public static int indexOfExtension (final String fileName ) throws IllegalArgumentException {
0 commit comments